aboutsummaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
authorPaul Fox <pgf@brightstareng.com>2007-11-14 23:48:35 +0000
committerPaul Fox <pgf@brightstareng.com>2007-11-14 23:48:35 +0000
commitae6bf96659f11873b7ce521c790808f2c7f67dec (patch)
treeba6f8e0e447a775e9108f7e011a656a30c0310f3 /procps
parent9d6c46955fb51d7867e0d8d0ed94006ab72e4821 (diff)
downloadbusybox-ae6bf96659f11873b7ce521c790808f2c7f67dec.tar.gz
bad syntax error should go to stderr
Diffstat (limited to 'procps')
-rw-r--r--procps/kill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/kill.c b/procps/kill.c
index 0c7c1608f..65c283760 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -129,7 +129,7 @@ do_it_now:
/* Pid or name is required for kill/killall */
if (argc < 1) {
- puts("You need to specify whom to kill");
+ bb_error_msg("You need to specify whom to kill");
return EXIT_FAILURE;
}