Merge pull request #643 from CounterPillow/datatype-fix

Change unsigned INT16 to UINT16
This commit is contained in:
wiredfool 2014-05-20 16:45:06 +01:00
commit d7c049504d
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ typedef struct {
unsigned char buffer[GIFTABLE]; unsigned char buffer[GIFTABLE];
/* Symbol table */ /* Symbol table */
unsigned INT16 link[GIFTABLE]; UINT16 link[GIFTABLE];
unsigned char data[GIFTABLE]; unsigned char data[GIFTABLE];
int next; int next;

View File

@ -45,7 +45,7 @@ typedef struct {
unsigned char buffer[LZWTABLE]; unsigned char buffer[LZWTABLE];
/* Symbol table */ /* Symbol table */
unsigned INT16 link[LZWTABLE]; UINT16 link[LZWTABLE];
unsigned char data[LZWTABLE]; unsigned char data[LZWTABLE];
int next; int next;