mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed unused variable warnings on Ubuntu.
This commit is contained in:
parent
76ed7768d5
commit
521eeae6a9
@ -199,7 +199,6 @@ int64_t mz_os_get_file_size(const char *path) {
|
||||
int32_t mz_os_get_file_date(const char *path, time_t *modified_date, time_t *accessed_date, time_t *creation_date) {
|
||||
struct stat path_stat;
|
||||
char *name = NULL;
|
||||
size_t len = 0;
|
||||
int32_t err = MZ_INTERNAL_ERROR;
|
||||
|
||||
memset(&path_stat, 0, sizeof(path_stat));
|
||||
|
@ -241,6 +241,8 @@ int32_t mz_stream_lzma_read(void *stream, void *buf, int32_t size) {
|
||||
}
|
||||
} while (lzma->lstream.avail_out > 0);
|
||||
|
||||
MZ_UNUSED(total_in);
|
||||
|
||||
if (lzma->error != 0)
|
||||
return MZ_DATA_ERROR;
|
||||
|
||||
|
@ -191,6 +191,8 @@ int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size) {
|
||||
}
|
||||
} while (zlib->zstream.avail_out > 0);
|
||||
|
||||
MZ_UNUSED(total_in);
|
||||
|
||||
if (zlib->error != 0) {
|
||||
/* Zlib errors are compatible with MZ */
|
||||
return zlib->error;
|
||||
|
Loading…
x
Reference in New Issue
Block a user