aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 9db2091dd..85a45dd6b 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -7099,7 +7099,7 @@ static int FAST_FUNC builtin_trap(char **argv)
7099 printf("trap -- "); 7099 printf("trap -- ");
7100 print_escaped(G.traps[i]); 7100 print_escaped(G.traps[i]);
7101 /* bash compat: it says SIGxxx, not just xxx */ 7101 /* bash compat: it says SIGxxx, not just xxx */
7102 printf(" SIG%s\n", get_signame(i)); 7102 printf(" %s%s\n", i == 0 ? "" : "SIG", get_signame(i));
7103 } 7103 }
7104 } 7104 }
7105 /*fflush(stdout); - done after each builtin anyway */ 7105 /*fflush(stdout); - done after each builtin anyway */