Fixed VS compile warning.

This commit is contained in:
Branimir Karadžić 2015-02-04 19:27:54 -08:00
parent f6594b1bab
commit 001d0ba9ef

View file

@ -8764,7 +8764,7 @@ static unsigned int stb_decompress(unsigned char *output, unsigned char *i, unsi
i += 16; i += 16;
stb__dout = output; stb__dout = output;
while (1) { for (;;) {
unsigned char *old_i = i; unsigned char *old_i = i;
i = stb_decompress_token(i); i = stb_decompress_token(i);
if (i == old_i) { if (i == old_i) {