mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed casting warnings.
This commit is contained in:
parent
be483d8b6e
commit
0cbc7b146d
@ -284,7 +284,7 @@ int32_t mz_stream_find(void *stream, const void *find, int32_t find_size, int64_
|
||||
|
||||
while (read_pos < max_seek)
|
||||
{
|
||||
if (read_size > (int32_t)(max_seek - read_pos - buf_pos) && (max_seek - read_pos - buf_pos) < sizeof(buf))
|
||||
if (read_size > (int32_t)(max_seek - read_pos - buf_pos) && (max_seek - read_pos - buf_pos) < (int64_t)sizeof(buf))
|
||||
read_size = (int32_t)(max_seek - read_pos - buf_pos);
|
||||
|
||||
read = mz_stream_read(stream, buf + buf_pos, read_size);
|
||||
@ -346,7 +346,7 @@ int32_t mz_stream_find_reverse(void *stream, const void *find, int32_t find_size
|
||||
|
||||
while (read_pos < max_seek)
|
||||
{
|
||||
if (read_size > (int32_t)(max_seek - read_pos) && (max_seek - read_pos) < sizeof(buf))
|
||||
if (read_size > (int32_t)(max_seek - read_pos) && (max_seek - read_pos) < (int64_t)sizeof(buf))
|
||||
read_size = (int32_t)(max_seek - read_pos);
|
||||
|
||||
if (mz_stream_seek(stream, start_pos - (read_pos + read_size), MZ_SEEK_SET) != MZ_OK)
|
||||
|
Loading…
x
Reference in New Issue
Block a user