summaryrefslogtreecommitdiff
path: root/uncompr.c
diff options
context:
space:
mode:
authorMika Lindqvist <postmaster@raasu.org>2015-05-23 01:17:27 +0300
committerMika Lindqvist <postmaster@raasu.org>2015-05-23 01:22:20 +0300
commit09403c93fdc681eae41539ee98125b3b8b72d631 (patch)
tree525501de4a3c6611d6a15125dbd5fdc7464d82dc /uncompr.c
parent8cde675c1461a24f7ee76be1e07ccb7046d7c7e8 (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uncompr.c b/uncompr.c
index 556b867..2a3eee4 100644
--- a/uncompr.c
+++ b/uncompr.c
@@ -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;