diff options
Diffstat (limited to 'toys/lsb')
-rw-r--r-- | toys/lsb/killall.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |