summaryrefslogtreecommitdiff
path: root/lib/printf.c
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2016-08-23 17:35:26 +0200
committerOndrej Zajicek (work) <santiago@crfreenet.org>2016-08-23 17:35:26 +0200
commit768d013267bd2a52bab70ba6d413f49365fb31e3 (patch)
treeecde9e8ee306aa18a6850d6b7668c1f6a119a8cb /lib/printf.c
parent678c97f21ef15c98546f41647f3244799a37db1f (diff)
parentd107ef78df2564cba75af1a6dcc9894c4468b207 (diff)
Merge remote-tracking branch 'origin/misc-fixes'
Diffstat (limited to 'lib/printf.c')
-rw-r--r--lib/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/printf.c b/lib/printf.c
index a067fe98..4fd75c9b 100644
--- a/lib/printf.c
+++ b/lib/printf.c
@@ -169,7 +169,7 @@ int bvsnprintf(char *buf, int size, const char *fmt, va_list args)
case ' ': flags |= SPACE; goto repeat;
case '#': flags |= SPECIAL; goto repeat;
case '0': flags |= ZEROPAD; goto repeat;
- }
+ }
/* get field width */
field_width = -1;