diff options
author | Bernhard Voelker <mail@bernhard-voelker.de> | 2011-07-25 18:39:28 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-08-13 11:21:01 +0200 |
commit | 036a9c69099f372ca581ce8b5c22e88656a2b478 (patch) | |
tree | d807c739860b82943c94dd01d600f188b1d89829 /src/printf.c | |
parent | faf5fbeb360a17d3d3407bf58a39706e4ce12642 (diff) | |
download | coreutils-036a9c69099f372ca581ce8b5c22e88656a2b478.tar.gz coreutils-036a9c69099f372ca581ce8b5c22e88656a2b478.tar.bz2 coreutils-036a9c69099f372ca581ce8b5c22e88656a2b478.zip |
maint: remove empty statement after jump label
* src/head.c (elide_tail_bytes_pipe): Remove the empty statement, ";"
after a jump label; it is needed only when a declaration follows.
* src/kill.c (main): Likewise.
* src/od.c (main): Likewise.
* src/paste.c (collapse_escapes): Likewise.
* src/printf.c (print_formatted): Likewise.
Diffstat (limited to 'src/printf.c')
-rw-r--r-- | src/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c index 24070b892..ddb6c461f 100644 --- a/src/printf.c +++ b/src/printf.c @@ -533,7 +533,7 @@ print_formatted (const char *format, int argc, char **argv) default: goto no_more_flag_characters; } - no_more_flag_characters:; + no_more_flag_characters: if (*f == '*') { |