Silenced a compiler warning if zlib is not enabled

This commit is contained in:
Thomas Schmitt 2020-10-26 19:39:45 +01:00
parent 80449f0dc9
commit d5ffecf2f5
1 changed files with 3 additions and 0 deletions

View File

@ -813,6 +813,8 @@ int ziso_stream_compress(IsoStream *stream, void *buf, size_t desired)
}
#ifdef Libisofs_with_zliB
static
int ziso_algo_to_num(uint8_t zisofs_algo[2])
{
@ -831,6 +833,7 @@ int ziso_algo_to_num(uint8_t zisofs_algo[2])
return -1;
}
#endif /* Libisofs_with_zliB */
static
int ziso_num_to_algo(uint8_t num, uint8_t zisofs_algo[2])