timer_create.2: Fix small bug in example

Reported-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2009-02-10 21:41:04 +13:00
parent 826ed36b7e
commit a31a4d2918
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ handler(int sig, siginfo_t *si, void *uc)
printf("Caught signal %d\\n", sig);
print_siginfo(si);
signal(SIG, SIG_IGN);
signal(sig, SIG_IGN);
}
int