# HG changeset patch # User Matti Hamalainen # Date 1425261281 -7200 # Node ID dd101fda037d9cc9bc0eca20a9aea19535f39dd5 # Parent 2ee8d6b765f99e197fa6d6868d01a742477c9e48 Use size_t here. diff -r 2ee8d6b765f9 -r dd101fda037d src/dmzlib.c --- 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)