Fixed compiler warnings.

This commit is contained in:
Nathan Moinvaziri 2018-10-08 23:44:45 -07:00
parent 004e7d3327
commit 09304a6184
3 changed files with 4 additions and 4 deletions

View File

@ -806,7 +806,7 @@ int ZEXPORT unzGetFilePos(unzFile file, unz_file_pos *file_pos)
return offset; return offset;
file_pos->pos_in_zip_directory = (uint32_t)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; return MZ_OK;
} }
@ -834,7 +834,7 @@ int ZEXPORT unzGetFilePos64(unzFile file, unz64_file_pos *file_pos)
offset = unzGetOffset64(file); offset = unzGetOffset64(file);
if (offset < 0) if (offset < 0)
return offset; return (int)offset;
file_pos->pos_in_zip_directory = offset; file_pos->pos_in_zip_directory = offset;
file_pos->num_of_file = compat->entry_index; file_pos->num_of_file = compat->entry_index;

View File

@ -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) if (path == NULL || join == NULL || max_path == 0)
return MZ_PARAM_ERROR; return MZ_PARAM_ERROR;
path_len = strlen(path); path_len = (int32_t)strlen(path);
if (path_len == 0) if (path_len == 0)
{ {

View File

@ -126,7 +126,7 @@ int32_t mz_stream_crc32_error(void *stream)
uint32_t mz_stream_crc32_get_value(void *stream) uint32_t mz_stream_crc32_get_value(void *stream)
{ {
mz_stream_crc32 *crc32 = (mz_stream_crc32 *)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) int32_t mz_stream_crc32_get_prop_int64(void *stream, int32_t prop, int64_t *value)