]> granicus.if.org Git - libjpeg-turbo/commitdiff
Fix Visual C++ compiler warnings
authorDRC <information@libjpeg-turbo.org>
Sat, 6 Feb 2016 22:03:57 +0000 (16:03 -0600)
committerDRC <information@libjpeg-turbo.org>
Sun, 7 Feb 2016 00:40:52 +0000 (18:40 -0600)
Somehow this got reverted with aa769febf25c64f115c2a237516b0c7d65f651cd.
Oops.

rdppm.c

diff --git a/rdppm.c b/rdppm.c
index f496ab36704e373871cac15502e4a50d276297d6..a249142214e2f1675313c651648adb7703acf812 100644 (file)
--- a/rdppm.c
+++ b/rdppm.c
@@ -99,7 +99,8 @@ read_pbm_integer (j_compress_ptr cinfo, FILE * infile, unsigned int maxval)
 /* Note that on a 16-bit-int machine, only values up to 64k can be read. */
 /* This should not be a problem in practice. */
 {
-  register int ch, val;
+  register int ch;
+  register unsigned int val;
 
   /* Skip any leading whitespace */
   do {