From 5d5dd3900f55321281f0cafd91fe2b802e67e831 Mon Sep 17 00:00:00 2001 From: Andy McFadden Date: Mon, 22 Dec 2014 16:20:39 -0800 Subject: [PATCH] Missed a "uint". --- nufxlib/Lzw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nufxlib/Lzw.c b/nufxlib/Lzw.c index a0df58d..69ff120 100644 --- a/nufxlib/Lzw.c +++ b/nufxlib/Lzw.c @@ -920,8 +920,8 @@ static inline void Nu_LZWPopCheck(const LZWExpandState* lzwState, * * (Turning this into a macro might speed things up.) */ -static inline uint Nu_LZWGetCode(const uint8_t** pInBuf, uint32_t entry, - int* pAtBit, uint* pLastByte) +static inline uint32_t Nu_LZWGetCode(const uint8_t** pInBuf, uint32_t entry, + int* pAtBit, uint32_t* pLastByte) { uint32_t numBits, startBit, lastBit; uint32_t value;