From: Ben Pfaff Date: Sun, 9 Jan 2005 01:13:48 +0000 (+0000) Subject: Print int with %d, not %zu. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=commitdiff_plain;h=2d20cd50c41c87a90d49e4b7ace3d18b8fb34f23 Print int with %d, not %zu. --- diff --git a/src/tests/threads/list.c b/src/tests/threads/list.c index 8d1c57c..2300bc3 100644 --- a/src/tests/threads/list.c +++ b/src/tests/threads/list.c @@ -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];