diff options
-rw-r--r-- | busybox/shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/busybox/shell/ash.c b/busybox/shell/ash.c index f16edbc38..6ab540a69 100644 --- a/busybox/shell/ash.c +++ b/busybox/shell/ash.c | |||
@@ -6637,7 +6637,7 @@ usage: | |||
6637 | } else | 6637 | } else |
6638 | pid = number(*argv); | 6638 | pid = number(*argv); |
6639 | if (kill(pid, signo) != 0) { | 6639 | if (kill(pid, signo) != 0) { |
6640 | sh_warnx("%m\n"); | 6640 | sh_warnx("kill %d: %s", pid, errmsg(errno, NULL)); |
6641 | i = 1; | 6641 | i = 1; |
6642 | } | 6642 | } |
6643 | } while (*++argv); | 6643 | } while (*++argv); |