changeset 3684:cc564f08884f

Fixed compiler warnings on 32-bit Linux
author Sam Lantinga <slouken@libsdl.org>
date Thu, 21 Jan 2010 05:49:41 +0000
parents 4c5ab6841fdc
children 64ce267332c6
files test/testplatform.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/test/testplatform.c	Tue Jan 19 07:28:51 2010 +0000
+++ b/test/testplatform.c	Thu Jan 21 05:49:41 2010 +0000
@@ -24,23 +24,23 @@
 
     if (badsize(sizeof(Uint8), 1)) {
         if (verbose)
-            printf("sizeof(Uint8) != 1, instead = %lu\n", sizeof(Uint8));
+            printf("sizeof(Uint8) != 1, instead = %u\n", sizeof(Uint8));
         ++error;
     }
     if (badsize(sizeof(Uint16), 2)) {
         if (verbose)
-            printf("sizeof(Uint16) != 2, instead = %lu\n", sizeof(Uint16));
+            printf("sizeof(Uint16) != 2, instead = %u\n", sizeof(Uint16));
         ++error;
     }
     if (badsize(sizeof(Uint32), 4)) {
         if (verbose)
-            printf("sizeof(Uint32) != 4, instead = %lu\n", sizeof(Uint32));
+            printf("sizeof(Uint32) != 4, instead = %u\n", sizeof(Uint32));
         ++error;
     }
 #ifdef SDL_HAS_64BIT_TYPE
     if (badsize(sizeof(Uint64), 8)) {
         if (verbose)
-            printf("sizeof(Uint64) != 8, instead = %lu\n", sizeof(Uint64));
+            printf("sizeof(Uint64) != 8, instead = %u\n", sizeof(Uint64));
         ++error;
     }
 #else