Print int with %d, not %zu.
[pintos-anon] / src / tests / threads / list.c
index 8d1c57c1013bc886368da30cb2be80bba71e2369..2300bc353f170e4ec4287adbd1b597101ce22e47 100644 (file)
@@ -41,7 +41,7 @@ test (void)
     {
       int repeat;
 
-      printf (" %zu", size);
+      printf (" %d", size);
       for (repeat = 0; repeat < 10; repeat++) 
         {
           static struct value values[MAX_SIZE * 4];