aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pigz.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pigz.c b/pigz.c
index 0635763..6262636 100644
--- a/pigz.c
+++ b/pigz.c
@@ -820,8 +820,9 @@ local void log_dump(void)
/* abort or catch termination signal */
local void cut_short(int sig)
{
- if (sig == SIGINT)
+ if (sig == SIGINT) {
Trace(("termination by user"));
+ }
if (g.outd != -1 && g.outd != 1) {
unlink(g.outf);
RELEASE(g.outf);