1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-03-13 19:50:08 +01: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 722933b6bc
commit dcf293aa30

View file

@ -145,7 +145,7 @@ sighandler (int signal, void *siginfo, void *context)
} }
# endif # endif
#elif UNW_TARGET_X86 #elif UNW_TARGET_X86
printf (" @ %lx", uc->uc_mcontext.gregs[REG_EIP]); printf (" @ %lx", (unsigned long) uc->uc_mcontext.gregs[REG_EIP]);
#endif #endif
printf ("\n"); printf ("\n");