mirror of
https://github.com/fadden/nulib2.git
synced 2024-12-27 17:29:57 +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.)
|
* (Turning this into a macro might speed things up.)
|
||||||
*/
|
*/
|
||||||
static inline uint Nu_LZWGetCode(const uint8_t** pInBuf, uint32_t entry,
|
static inline uint32_t Nu_LZWGetCode(const uint8_t** pInBuf, uint32_t entry,
|
||||||
int* pAtBit, uint* pLastByte)
|
int* pAtBit, uint32_t* pLastByte)
|
||||||
{
|
{
|
||||||
uint32_t numBits, startBit, lastBit;
|
uint32_t numBits, startBit, lastBit;
|
||||||
uint32_t value;
|
uint32_t value;
|
||||||
|
Loading…
Reference in New Issue
Block a user