mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed more warnings. #263
This commit is contained in:
parent
a710bd714a
commit
408940f16c
@ -11,8 +11,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_COMPAT_H
|
||||
#define _MZ_COMPAT_H
|
||||
#ifndef MZ_COMPAT_H
|
||||
#define MZ_COMPAT_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
4
mz_os.h
4
mz_os.h
@ -11,8 +11,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_OS_H
|
||||
#define _MZ_OS_H
|
||||
#ifndef MZ_OS_H
|
||||
#define MZ_OS_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -131,7 +131,7 @@ int32_t mz_posix_set_file_attribs(const char *path, uint32_t attributes)
|
||||
{
|
||||
int32_t err = MZ_OK;
|
||||
|
||||
if (chmod(path, attributes) == -1)
|
||||
if (chmod(path, (mode_t)attributes) == -1)
|
||||
err = MZ_INTERNAL_ERROR;
|
||||
|
||||
return err;
|
||||
|
@ -9,8 +9,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_OS_POSIX_H
|
||||
#define _MZ_OS_POSIX_H
|
||||
#ifndef MZ_OS_POSIX_H
|
||||
#define MZ_OS_POSIX_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <time.h>
|
||||
|
@ -9,8 +9,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_OS_WIN32_H
|
||||
#define _MZ_OS_WIN32_H
|
||||
#ifndef MZ_OS_WIN32_H
|
||||
#define MZ_OS_WIN32_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_H
|
||||
#define _MZ_STREAM_H
|
||||
#ifndef MZ_STREAM_H
|
||||
#define MZ_STREAM_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_AES_H
|
||||
#define _MZ_STREAM_AES_H
|
||||
#ifndef MZ_STREAM_AES_H
|
||||
#define MZ_STREAM_AES_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -340,7 +340,7 @@ int32_t mz_stream_buffered_close(void *stream)
|
||||
int32_t bytes_flushed = 0;
|
||||
|
||||
mz_stream_buffered_flush(stream, &bytes_flushed);
|
||||
mz_stream_buffered_print(stream, "close\n");
|
||||
mz_stream_buffered_print(stream, "close [flushed %d]\n", bytes_flushed);
|
||||
|
||||
if (buffered->readbuf_hits + buffered->readbuf_misses > 0)
|
||||
mz_stream_buffered_print(stream, "read efficency %.02f%%\n",
|
||||
|
@ -11,8 +11,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_BUFFERED_H
|
||||
#define _MZ_STREAM_BUFFERED_H
|
||||
#ifndef MZ_STREAM_BUFFERED_H
|
||||
#define MZ_STREAM_BUFFERED_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -254,7 +254,7 @@ int32_t mz_stream_bzip_write(void *stream, const void *buf, int32_t size)
|
||||
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
|
||||
|
||||
|
||||
bzip->bzstream.next_in = (char *)buf;
|
||||
bzip->bzstream.next_in = (char *)(intptr_t)buf;
|
||||
bzip->bzstream.avail_in = (unsigned int)size;
|
||||
|
||||
mz_stream_bzip_compress(stream, BZ_RUN);
|
||||
|
@ -9,8 +9,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_BZIP_H
|
||||
#define _MZ_STREAM_BZIP_H
|
||||
#ifndef MZ_STREAM_BZIP_H
|
||||
#define MZ_STREAM_BZIP_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_CRYPT_H
|
||||
#define _MZ_STREAM_CRYPT_H
|
||||
#ifndef MZ_STREAM_CRYPT_H
|
||||
#define MZ_STREAM_CRYPT_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -272,7 +272,7 @@ int32_t mz_stream_lzma_write(void *stream, const void *buf, int32_t size)
|
||||
mz_stream_lzma *lzma = (mz_stream_lzma *)stream;
|
||||
|
||||
|
||||
lzma->lstream.next_in = (uint8_t*)buf;
|
||||
lzma->lstream.next_in = (uint8_t*)(intptr_t)buf;
|
||||
lzma->lstream.avail_in = (size_t)size;
|
||||
|
||||
mz_stream_lzma_code(stream, LZMA_RUN);
|
||||
|
@ -9,8 +9,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_LZMA_H
|
||||
#define _MZ_STREAM_LZMA_H
|
||||
#ifndef MZ_STREAM_LZMA_H
|
||||
#define MZ_STREAM_LZMA_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -11,8 +11,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_MEM_H
|
||||
#define _MZ_STREAM_MEM_H
|
||||
#ifndef MZ_STREAM_MEM_H
|
||||
#define MZ_STREAM_MEM_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -32,8 +32,8 @@ int32_t mz_stream_mem_close(void *stream);
|
||||
int32_t mz_stream_mem_error(void *stream);
|
||||
|
||||
void mz_stream_mem_set_buffer(void *stream, void *buf, int32_t size);
|
||||
int32_t mz_stream_mem_get_buffer(void *stream, void **buf);
|
||||
int32_t mz_stream_mem_get_buffer_at(void *stream, int64_t position, void **buf);
|
||||
int32_t mz_stream_mem_get_buffer(void *stream, const void **buf);
|
||||
int32_t mz_stream_mem_get_buffer_at(void *stream, int64_t position, const void **buf);
|
||||
void mz_stream_mem_set_grow_size(void *stream, int32_t grow_size);
|
||||
|
||||
void* mz_stream_mem_create(void **stream);
|
||||
|
@ -14,8 +14,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_POSIX_H
|
||||
#define _MZ_STREAM_POSIX_H
|
||||
#ifndef MZ_STREAM_POSIX_H
|
||||
#define MZ_STREAM_POSIX_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -255,7 +255,7 @@ int32_t mz_stream_split_write(void *stream, const void *buf, int32_t size)
|
||||
int32_t bytes_avail = 0;
|
||||
int32_t number_disk = -1;
|
||||
int32_t err = MZ_OK;
|
||||
uint8_t *buf_ptr = (uint8_t *)buf;
|
||||
const uint8_t *buf_ptr = (const uint8_t *)buf;
|
||||
|
||||
while (bytes_left > 0)
|
||||
{
|
||||
|
@ -9,8 +9,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_SPLIT_H
|
||||
#define _MZ_STREAM_SPLIT_H
|
||||
#ifndef MZ_STREAM_SPLIT_H
|
||||
#define MZ_STREAM_SPLIT_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -256,7 +256,7 @@ int32_t mz_stream_zlib_write(void *stream, const void *buf, int32_t size)
|
||||
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
||||
|
||||
|
||||
zlib->zstream.next_in = (Bytef*)buf;
|
||||
zlib->zstream.next_in = (Bytef*)(intptr_t)buf;
|
||||
zlib->zstream.avail_in = (uInt)size;
|
||||
|
||||
mz_stream_zlib_deflate(stream, Z_NO_FLUSH);
|
||||
|
@ -9,8 +9,8 @@
|
||||
See the accompanying LICENSE file for the full text of the license.
|
||||
*/
|
||||
|
||||
#ifndef _MZ_STREAM_ZLIB_H
|
||||
#define _MZ_STREAM_ZLIB_H
|
||||
#ifndef MZ_STREAM_ZLIB_H
|
||||
#define MZ_STREAM_ZLIB_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
1
mz_zip.c
1
mz_zip.c
@ -54,7 +54,6 @@
|
||||
|
||||
#define MZ_ZIP_SIZE_CD_ITEM (0x2e)
|
||||
#define MZ_ZIP_SIZE_CD_LOCATOR64 (0x14)
|
||||
#define MZ_ZIP_SIZE_LOCALHEADER (0x1e)
|
||||
|
||||
#define MZ_ZIP_EXTENSION_ZIP64 (0x0001)
|
||||
#define MZ_ZIP_EXTENSION_NTFS (0x000a)
|
||||
|
Loading…
x
Reference in New Issue
Block a user