projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f1dc34
)
%d needed to be %zu
author
Ben Pfaff
<blp@cs.stanford.edu>
Sun, 9 Jan 2005 02:19:38 +0000
(
02:19
+0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Sun, 9 Jan 2005 02:19:38 +0000
(
02:19
+0000)
grading/filesys/fslib.c
patch
|
blob
|
history
diff --git
a/grading/filesys/fslib.c
b/grading/filesys/fslib.c
index 78e168a96af36cadc723c326fd711b21922949b4..be17f298d73a89587eee0a00c212ca084f89f166 100644
(file)
--- a/
grading/filesys/fslib.c
+++ b/
grading/filesys/fslib.c
@@
-196,7
+196,7
@@
join_children (pid_t pids[], size_t child_cnt)
{
int status = join (pids[i]);
CHECK (status == (int) i,
- "join child %zu of %zu returned %d (expected %
d
)",
+ "join child %zu of %zu returned %d (expected %
zu
)",
i + 1, child_cnt, status, i);
}
}