Fixed unused variable warnings on Ubuntu.

This commit is contained in:
Nathan Moinvaziri 2023-04-18 11:31:41 -07:00
parent 76ed7768d5
commit 521eeae6a9
3 changed files with 4 additions and 1 deletions

View File

@ -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));

View File

@ -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;

View File

@ -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;