diff options
author | Ron Yorston <rmy@pobox.com> | 2021-12-27 08:21:55 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-12-27 08:21:55 +0000 |
commit | b15f68214da209b5b293039c09c00f490c0cc193 (patch) | |
tree | d644b5d9318b79cb1baa356cbb63318cc4872c05 /coreutils/printf.c | |
parent | 1ee308c75f4720ee38be8e81ff8c9ed4c52670d4 (diff) | |
parent | 44075929a8b9c1861d15564fa6ac4562abb724d7 (diff) | |
download | busybox-w32-b15f68214da209b5b293039c09c00f490c0cc193.tar.gz busybox-w32-b15f68214da209b5b293039c09c00f490c0cc193.tar.bz2 busybox-w32-b15f68214da209b5b293039c09c00f490c0cc193.zip |
Merge busybox into merge
Fix merge conflict in coreutils/timeout.c.
Diffstat (limited to 'coreutils/printf.c')
-rw-r--r-- | coreutils/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/printf.c b/coreutils/printf.c index cc26ecd03..da129f909 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c | |||
@@ -378,7 +378,7 @@ static char **print_formatted(char *f, char **argv, int *conv_err) | |||
378 | } | 378 | } |
379 | break; | 379 | break; |
380 | } | 380 | } |
381 | if (*f && strchr("-+ #", *f)) { | 381 | while (*f && strchr("-+ #0", *f)) { |
382 | ++f; | 382 | ++f; |
383 | ++direc_length; | 383 | ++direc_length; |
384 | } | 384 | } |