Fix reported compiler warning.

svn-id: r26828
This commit is contained in:
Travis Howell 2007-05-13 11:07:00 +00:00
parent 9a04d1dffb
commit b1a95b502d

View File

@ -36,7 +36,7 @@ enum {
static void uncompressPlane(const byte *plane, byte *outptr, int length) {
while (length != 0) {
int wordlen;
char x = *plane++;
signed char x = *plane++;
if (x >= 0) {
wordlen = MIN<int>(x + 1, length);
uint16 w = READ_UINT16(plane); plane += 2;