1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-25 02:41:45 +02:00

Cast printf() argument to avoid compiler warning.

(Logical change 1.130)
This commit is contained in:
hp.com!davidm 2003-11-27 06:52:54 +00:00
parent 6c2e6e7f72
commit 722933b6bc

View file

@ -86,7 +86,8 @@ handler (int sig)
unw_step(&c); /* step to signaller frame (main ()) */
unw_get_reg(&c, UNW_REG_IP, &ip);
if (verbose)
printf ("resuming at 0x%lx, with SIGUSR2 pending\n", ip);
printf ("resuming at 0x%lx, with SIGUSR2 pending\n",
(unsigned long) ip);
unw_resume(&c);
}
else if (sig == SIGUSR2)