summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--snprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/snprintf.c b/snprintf.c
index 115bbe2..5310acc 100644
--- a/snprintf.c
+++ b/snprintf.c
@@ -39,9 +39,9 @@ static const struct {
/* ...but it still has to honor width and flags. */
{ "%2.0u", 0, " " },
- { "%02.0u", 0, "00" },
+ { "%02.0u", 0, " " },
{ "%2.0d", 0, " " },
- { "%02.0d", 0, "00" },
+ { "%02.0d", 0, " " },
{ "% .0d", 0, " " },
{ "%+.0d", 0, "+" },