From 09304a6184f12a24b6580d85442f0b9959a42f47 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Mon, 8 Oct 2018 23:44:45 -0700 Subject: [PATCH] Fixed compiler warnings. --- mz_compat.c | 4 ++-- mz_os.c | 2 +- mz_strm_crc32.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mz_compat.c b/mz_compat.c index 9e562c1..94a7b80 100644 --- a/mz_compat.c +++ b/mz_compat.c @@ -806,7 +806,7 @@ int ZEXPORT unzGetFilePos(unzFile file, unz_file_pos *file_pos) return offset; file_pos->pos_in_zip_directory = (uint32_t)offset; - file_pos->num_of_file = compat->entry_index; + file_pos->num_of_file = (uint32_t)compat->entry_index; return MZ_OK; } @@ -834,7 +834,7 @@ int ZEXPORT unzGetFilePos64(unzFile file, unz64_file_pos *file_pos) offset = unzGetOffset64(file); if (offset < 0) - return offset; + return (int)offset; file_pos->pos_in_zip_directory = offset; file_pos->num_of_file = compat->entry_index; diff --git a/mz_os.c b/mz_os.c index 90d4d06..e7a0483 100644 --- a/mz_os.c +++ b/mz_os.c @@ -67,7 +67,7 @@ int32_t mz_path_combine(char *path, const char *join, int32_t max_path) if (path == NULL || join == NULL || max_path == 0) return MZ_PARAM_ERROR; - path_len = strlen(path); + path_len = (int32_t)strlen(path); if (path_len == 0) { diff --git a/mz_strm_crc32.c b/mz_strm_crc32.c index 0c41772..30bc003 100644 --- a/mz_strm_crc32.c +++ b/mz_strm_crc32.c @@ -126,7 +126,7 @@ int32_t mz_stream_crc32_error(void *stream) uint32_t mz_stream_crc32_get_value(void *stream) { mz_stream_crc32 *crc32 = (mz_stream_crc32 *)stream; - return crc32->value; + return (uint32_t)crc32->value; } int32_t mz_stream_crc32_get_prop_int64(void *stream, int32_t prop, int64_t *value)