aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index bebfec8f5..f8207a6cc 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -3573,7 +3573,7 @@ killcmd(int argc, char **argv)
3573 if (!*argv) { 3573 if (!*argv) {
3574 for (i = 1; i < NSIG; i++) { 3574 for (i = 1; i < NSIG; i++) {
3575 name = get_signame(i); 3575 name = get_signame(i);
3576 if (isdigit(*name)) 3576 if (!isdigit(*name))
3577 out1fmt(snlfmt, name); 3577 out1fmt(snlfmt, name);
3578 } 3578 }
3579 return 0; 3579 return 0;