summaryrefslogtreecommitdiff
path: root/src/kill.c
diff options
context:
space:
mode:
authorBernhard Voelker <mail@bernhard-voelker.de>2011-07-25 18:39:28 +0200
committerJim Meyering <meyering@redhat.com>2011-08-13 11:21:01 +0200
commit036a9c69099f372ca581ce8b5c22e88656a2b478 (patch)
treed807c739860b82943c94dd01d600f188b1d89829 /src/kill.c
parentfaf5fbeb360a17d3d3407bf58a39706e4ce12642 (diff)
downloadcoreutils-036a9c69099f372ca581ce8b5c22e88656a2b478.tar.xz
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/kill.c')
-rw-r--r--src/kill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kill.c b/src/kill.c
index b94e68ca4..9f95114ea 100644
--- a/src/kill.c
+++ b/src/kill.c
@@ -292,7 +292,7 @@ main (int argc, char **argv)
default:
usage (EXIT_FAILURE);
}
- no_more_options:;
+ no_more_options:
if (signum < 0)
signum = SIGTERM;