diff options
author | Mika Lindqvist <postmaster@raasu.org> | 2015-05-23 01:17:27 +0300 |
---|---|---|
committer | Mika Lindqvist <postmaster@raasu.org> | 2015-05-23 01:22:20 +0300 |
commit | 09403c93fdc681eae41539ee98125b3b8b72d631 (patch) | |
tree | 525501de4a3c6611d6a15125dbd5fdc7464d82dc /uncompr.c | |
parent | 8cde675c1461a24f7ee76be1e07ccb7046d7c7e8 (diff) |
Cleanup user-defined types for 'unsigned char'
* Change 'uch' to 'unsigned char'
* Change 'Byte' to 'unsigned char'
Diffstat (limited to 'uncompr.c')
-rw-r--r-- | uncompr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ enough memory, Z_BUF_ERROR if there was not enough room in the output buffer, or Z_DATA_ERROR if the input data was corrupted. */ -int ZEXPORT uncompress (Byte *dest, uLong *destLen, const unsigned char *source, uLong sourceLen) +int ZEXPORT uncompress (unsigned char *dest, uLong *destLen, const unsigned char *source, uLong sourceLen) { z_stream stream; int err; |