Fix "%d"s that should be "%zu"s.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 4 Jan 2005 07:55:25 +0000 (07:55 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 4 Jan 2005 07:55:25 +0000 (07:55 +0000)
grading/userprog/multi-child-fd.c
grading/userprog/read-boundary.c
grading/userprog/read-normal.c
grading/userprog/write-boundary.c
grading/userprog/write-normal.c

index 4a8c89fae509f67ab2b4693c6e9ffa951375299c..50b5a50d045359af6ff79049e29b524ceee755d5 100644 (file)
@@ -24,7 +24,7 @@ main (void)
 
   byte_cnt = read (handle, actual, sizeof actual - 1);
   if (byte_cnt != sizeof actual - 1)
-    printf ("(multi-child-fd) fail: read() returned %d instead of %d\n",
+    printf ("(multi-child-fd) fail: read() returned %d instead of %zu\n",
             byte_cnt, sizeof actual - 1);
   else if (strcmp (sample, actual))
     printf ("(multi-child-fd) fail: expected text differs from actual:\n%s",
index 41c798ea7f06302785e85dab5471edcaf10e447d..1fd187fe97252fdd3bbafa6d6487eef6d8bae555 100644 (file)
@@ -30,7 +30,7 @@ main (void)
 
   byte_cnt = read (handle, actual_p, sizeof sample - 1);
   if (byte_cnt != sizeof sample - 1)
-    printf ("(read-boundary) fail: read() returned %d instead of %d\n",
+    printf ("(read-boundary) fail: read() returned %d instead of %zu\n",
             byte_cnt, sizeof sample - 1);
   else if (strcmp (sample, actual_p))
     printf ("(read-boundary) fail: expected text differs from actual:\n%s",
index 2e6f6817b8814d9ff49e1e46714a558f40d728f2..9a63083b890f16cb8c40fecf45b085e42b650da3 100644 (file)
@@ -17,7 +17,7 @@ main (void)
 
   byte_cnt = read (handle, actual, sizeof actual - 1);
   if (byte_cnt != sizeof actual - 1)
-    printf ("(read-normal) fail: read() returned %d instead of %d\n",
+    printf ("(read-normal) fail: read() returned %d instead of %zu\n",
             byte_cnt, sizeof actual - 1);
   else if (strcmp (sample, actual))
     printf ("(read-normal) fail: expected text differs from actual:\n%s",
index a31dad064feeb9c9aa9ce995108ff32f1252734d..860e2a278c56ddb5ed7f014708215955fa772ba3 100644 (file)
@@ -30,7 +30,7 @@ main (void)
 
   byte_cnt = write (handle, sample_p, sizeof sample - 1);
   if (byte_cnt != sizeof sample - 1)
-    printf ("(write-boundary) fail: write() returned %d instead of %d\n",
+    printf ("(write-boundary) fail: write() returned %d instead of %zu\n",
             byte_cnt, sizeof sample - 1);
   
   printf ("(write-boundary) end\n");
index b2e96e86927aa351e6dcb64d1191d937d69c17fa..145d0bf12ec71da8a0fd3aa4e0f8e4467420e691 100644 (file)
@@ -18,7 +18,7 @@ main (void)
 
   byte_cnt = write (handle, sample, sizeof sample - 1);
   if (byte_cnt != sizeof sample - 1)
-    printf ("(write-normal) fail: write() returned %d instead of %d\n",
+    printf ("(write-normal) fail: write() returned %d instead of %zu\n",
             byte_cnt, sizeof sample - 1);
   
   printf ("(write-normal) end\n");