1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

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;
if (sigaction(sig, &sa, NULL)) {
err(1, "register_interrupt: sigaction");
err(1, "unregister_interrupt: sigaction");
}
return 0;
}