fix error message

This commit is contained in:
Ludwig Ortmann 2013-03-13 22:00:41 +01:00
parent 175300e58c
commit f8f9557b0b

View File

@ -245,7 +245,7 @@ int unregister_interrupt(int sig)
sa.sa_flags = SA_RESTART | SA_SIGINFO; sa.sa_flags = SA_RESTART | SA_SIGINFO;
if (sigaction(sig, &sa, NULL)) { if (sigaction(sig, &sa, NULL)) {
err(1, "register_interrupt: sigaction"); err(1, "unregister_interrupt: sigaction");
} }
return 0; return 0;
} }