core: fix some compilation warnings in zlib_utils.c

This commit is contained in:
Hugues Delorme 2016-12-28 20:13:22 +01:00
parent 3acc51f73c
commit 88655ddcdb

View File

@ -97,9 +97,9 @@ bool gmio_check_zlib_compress_options(
int* error, const struct gmio_zlib_compress_options* z_opts) int* error, const struct gmio_zlib_compress_options* z_opts)
{ {
if (z_opts != NULL) { if (z_opts != NULL) {
if (!(-1 <= z_opts->level && z_opts->level <= 9)) if (z_opts->level > 9)
*error = GMIO_ERROR_ZLIB_INVALID_COMPRESS_LEVEL; *error = GMIO_ERROR_ZLIB_INVALID_COMPRESS_LEVEL;
if (!(0 <= z_opts->memory_usage && z_opts->memory_usage <= 9)) if (z_opts->memory_usage > 9)
*error = GMIO_ERROR_ZLIB_INVALID_COMPRESS_MEMORY_USAGE; *error = GMIO_ERROR_ZLIB_INVALID_COMPRESS_MEMORY_USAGE;
} }
return gmio_no_error(*error); return gmio_no_error(*error);