diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-08-23 17:35:26 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-08-23 17:35:26 +0200 |
commit | 768d013267bd2a52bab70ba6d413f49365fb31e3 (patch) | |
tree | ecde9e8ee306aa18a6850d6b7668c1f6a119a8cb /lib/printf.c | |
parent | 678c97f21ef15c98546f41647f3244799a37db1f (diff) | |
parent | d107ef78df2564cba75af1a6dcc9894c4468b207 (diff) |
Merge remote-tracking branch 'origin/misc-fixes'
Diffstat (limited to 'lib/printf.c')
-rw-r--r-- | lib/printf.c | 2 |
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; |