From: Paul Fox Date: Wed, 14 Nov 2007 23:48:35 +0000 (-0000) Subject: bad syntax error should go to stderr X-Git-Tag: 1_9_0~105 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ae6bf96659f11873b7ce521c790808f2c7f67dec;p=oweals%2Fbusybox.git bad syntax error should go to stderr --- 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; }