mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed compiler warnings.
This commit is contained in:
parent
004e7d3327
commit
09304a6184
@ -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;
|
||||
|
2
mz_os.c
2
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)
|
||||
{
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user