changeset 1071:dd101fda037d

Use size_t here.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 02 Mar 2015 03:54:41 +0200
parents 2ee8d6b765f9
children 33c5f2bd0ed3
files src/dmzlib.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/dmzlib.c	Mon Mar 02 03:09:10 2015 +0200
+++ b/src/dmzlib.c	Mon Mar 02 03:54:41 2015 +0200
@@ -488,7 +488,7 @@
 static int dmZLibParseUncompressedBlock(DMZLibContext * ctx)
 {
     Uint8 header[4];
-    int len, nlen, k, ret;
+    size_t len, nlen, k, ret;
 
     // "Any bits of input up to the next byte boundary are ignored."
     if (ctx->numBits & 7)