projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6daf729
)
Remove redundant test.
author
Ben Pfaff
<blp@cs.stanford.edu>
Thu, 2 Dec 2004 00:39:30 +0000
(
00:39
+0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Thu, 2 Dec 2004 00:39:30 +0000
(
00:39
+0000)
src/lib/stdio.c
patch
|
blob
|
history
diff --git
a/src/lib/stdio.c
b/src/lib/stdio.c
index 4b0ba1967f2698bbce124fd4cad9bfb3ac17ff95..bae257feb73da6bc4e64806feaaeca2488cbd76f 100644
(file)
--- a/
src/lib/stdio.c
+++ b/
src/lib/stdio.c
@@
-492,8
+492,6
@@
format_integer (uintmax_t value, bool negative, const struct integer_base *b,
If requested precision is 0, then a value of zero is
rendered as a null string, otherwise as "0". */
precision = c->precision < 0 ? 1 : c->precision;
- if (precision < 0)
- precision = 1;
while (cp - buf < precision && cp - buf < (int) sizeof buf - 8)
*cp++ = '0';