Missed a "uint".

This commit is contained in:
Andy McFadden 2014-12-22 16:20:39 -08:00
parent dbbbe6a858
commit 5d5dd3900f
1 changed files with 2 additions and 2 deletions

View File

@ -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;