summaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-07-19 22:28:02 +0000
committerEric Andersen <andersen@codepoet.org>2001-07-19 22:28:02 +0000
commit20aab260e2f7011523402464fb079f48e5899890 (patch)
treef7822e652f54884459d525f57f1ef18c03a126f7 /procps
parent0382eb886529fc4dab170e7d66883c20fe0e2883 (diff)
downloadbusybox-w32-20aab260e2f7011523402464fb079f48e5899890.tar.gz
busybox-w32-20aab260e2f7011523402464fb079f48e5899890.tar.bz2
busybox-w32-20aab260e2f7011523402464fb079f48e5899890.zip
Some adjustments, mostly from David McCullough <davidm@lineo.com> 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
Diffstat (limited to 'procps')
-rw-r--r--procps/kill.c5
1 files changed, 2 insertions, 3 deletions
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)
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;