Print int with %d, not %zu.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 9 Jan 2005 01:13:48 +0000 (01:13 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 9 Jan 2005 01:13:48 +0000 (01:13 +0000)
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];