From b1353fb9185928249f273340c601244291e269fe Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 7 Sep 2015 17:12:57 -0500 Subject: Remove prompt argument from yesno(), caller can fprintf(stderr, "blah") itself. This fixes the build break, the change to yesno() prototype accidentally got checked in last commit. (Oops, sorry.) --- toys/lsb/killall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/lsb/killall.c') diff --git a/toys/lsb/killall.c b/toys/lsb/killall.c index 478f7617..e8927559 100644 --- a/toys/lsb/killall.c +++ b/toys/lsb/killall.c @@ -40,8 +40,8 @@ static int kill_process(pid_t pid, char *name) if (pid == TT.cur_pid) return 0; if (toys.optflags & FLAG_i) { - snprintf(toybuf, sizeof(toybuf), "Signal %s(%d) ?", name, (int)pid); - if (!yesno(toybuf, 0)) return 0; + fprintf(stderr, "Signal %s(%d)", name, (int)pid); + if (!yesno(0)) return 0; } errno = 0; -- cgit v1.2.3