mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-22 16:20:29 +01:00
Cast printf() argument to avoid compiler-warning.
(Logical change 1.130)
This commit is contained in:
parent
722933b6bc
commit
dcf293aa30
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ sighandler (int signal, void *siginfo, void *context)
|
|||
}
|
||||
# endif
|
||||
#elif UNW_TARGET_X86
|
||||
printf (" @ %lx", uc->uc_mcontext.gregs[REG_EIP]);
|
||||
printf (" @ %lx", (unsigned long) uc->uc_mcontext.gregs[REG_EIP]);
|
||||
#endif
|
||||
printf ("\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue