diff --git a/sndiod/sndiod.c b/sndiod/sndiod.c index 7123789..b8c78a0 100644 --- a/sndiod/sndiod.c +++ b/sndiod/sndiod.c @@ -243,11 +243,11 @@ unsetsig(void) sa.sa_flags = SA_RESTART; sa.sa_handler = SIG_DFL; if (sigaction(SIGHUP, &sa, NULL) < 0) - err(1, "unsetsig(hup): sigaction failed\n"); + err(1, "unsetsig(hup): sigaction failed"); if (sigaction(SIGTERM, &sa, NULL) < 0) - err(1, "unsetsig(term): sigaction failed\n"); + err(1, "unsetsig(term): sigaction failed"); if (sigaction(SIGINT, &sa, NULL) < 0) - err(1, "unsetsig(int): sigaction failed\n"); + err(1, "unsetsig(int): sigaction failed"); } void