diff options
Diffstat (limited to 'kill.c')
-rw-r--r-- | kill.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -147,9 +147,8 @@ extern int kill_main(int argc, char **argv) | |||
147 | const struct signal_name *s = signames; | 147 | const struct signal_name *s = signames; |
148 | 148 | ||
149 | while (s->name != 0) { | 149 | while (s->name != 0) { |
150 | col += | 150 | col += fprintf(stderr, "%2d) %-8s", s->number, s->name); |
151 | fprintf(stderr, "%2d) %-8s", s->number, | 151 | s++; |
152 | (s++)->name); | ||
153 | if (col > 60) { | 152 | if (col > 60) { |
154 | fprintf(stderr, "\n"); | 153 | fprintf(stderr, "\n"); |
155 | col = 0; | 154 | col = 0; |