Fixed more compiler warnings.

This commit is contained in:
Nathan Moinvaziri 2018-11-10 09:03:55 -08:00
parent f274ae0649
commit 1d6d183af6
8 changed files with 28 additions and 30 deletions

View file

@ -191,7 +191,7 @@ int32_t mz_zip_extrafield_find(void *stream, uint16_t type, uint16_t *length);
int32_t mz_zip_extrafield_read(void *stream, uint16_t *type, uint16_t *length);
// Reads an extrafield header from a stream
int32_t mz_zip_extrafield_write(void *stream, uint32_t type, uint16_t length);
int32_t mz_zip_extrafield_write(void *stream, uint16_t type, uint16_t length);
// Writes an extrafield header to a stream
/***************************************************************************/