From 20aab260e2f7011523402464fb079f48e5899890 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 19 Jul 2001 22:28:02 +0000 Subject: Some adjustments, mostly from David McCullough to make busybox be more uClinux friendly. I also adjusted Config.h for uClinux so it will automagically disable apps the arn't going to work without fork() and such. -Erik --- procps/kill.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'procps') diff --git a/procps/kill.c b/procps/kill.c index 8745f63c1..34cbc4d6a 100644 --- a/procps/kill.c +++ b/procps/kill.c @@ -147,9 +147,8 @@ extern int kill_main(int argc, char **argv) const struct signal_name *s = signames; while (s->name != 0) { - col += - fprintf(stderr, "%2d) %-8s", s->number, - (s++)->name); + col += fprintf(stderr, "%2d) %-8s", s->number, s->name); + s++; if (col > 60) { fprintf(stderr, "\n"); col = 0; -- cgit v1.2.3