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 f16edbc..6ab540a 100644 --- a/busybox/shell/ash.c +++ b/busybox/shell/ash.c @@ -6637,7 +6637,7 @@ usage: } else pid = number(*argv); if (kill(pid, signo) != 0) { - sh_warnx("%m\n"); + sh_warnx("kill %d: %s", pid, errmsg(errno, NULL)); i = 1; } } while (*++argv); |