mirror of
https://github.com/fadden/nulib2.git
synced 2024-12-27 02:31:49 +00:00
Missed a "uint".
This commit is contained in:
parent
dbbbe6a858
commit
5d5dd3900f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user