]> granicus.if.org Git - libjpeg-turbo/commitdiff
Compiler warnings
authorDRC <dcommander@users.sourceforge.net>
Tue, 31 Jan 2012 03:39:23 +0000 (03:39 +0000)
committerDRC <dcommander@users.sourceforge.net>
Tue, 31 Jan 2012 03:39:23 +0000 (03:39 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/branches/1.2.x@758 632fc199-4ca6-4c93-a231-07263d6284db

jcdctmgr.c
simd/jsimd_arm.c
simd/jsimd_i386.c

index 711f9dab62906a520f8eb3ce1334f0264baa7901..12f88725ddfd9e8f3c457ec37c3eb29047f95238 100644 (file)
@@ -182,7 +182,7 @@ compute_reciprocal (UINT16 divisor, DCTELEM * dtbl)
     /* fq will be one bit too large to fit in DCTELEM, so adjust */
     fq >>= 1;
     r--;
-  } else if (fr <= (divisor / 2)) { /* fractional part is < 0.5 */
+  } else if (fr <= (divisor / 2U)) { /* fractional part is < 0.5 */
     c++;
   } else { /* fractional part is > 0.5 */
     fq++;
index 5a095f2af89ec78aaaeffb6cc954edef956f8824..af0c2c8afb782bdff3afe4e0d4db1b3875d37588 100644 (file)
@@ -104,7 +104,7 @@ init_simd (void)
   int bufsize = 1024; /* an initial guess for the line buffer size limit */
 #endif
 
-  if (simd_support != ~0)
+  if (simd_support != ~0U)
     return;
 
   simd_support = 0;
index 120eb0290766fe42e683a33a17c754a66441be74..e96f5b8d79cdf4acc13f6ef414d28032d655a306 100644 (file)
@@ -41,7 +41,7 @@ init_simd (void)
 {
   char *env = NULL;
 
-  if (simd_support != ~0)
+  if (simd_support != ~0U)
     return;
 
   simd_support = jpeg_simd_cpu_support();