Fix warning (try again)

This commit is contained in:
Nedko Arnaudov 2012-12-22 22:03:57 +02:00
parent d562213ddd
commit 62230f606b
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ static void signal_segv(int signum, siginfo_t* info, void*ptr) {
#else
for(i = 0; i < NGREG; i++)
{
log_error("reg[%02d] = 0x" REGFORMAT, i, (int)ucontext->uc_mcontext.gregs[i]);
log_error("reg[%02d] = 0x" REGFORMAT, (int)i, ucontext->uc_mcontext.gregs[i]);
}
#if defined(SIGSEGV_STACK_X86) || defined(SIGSEGV_STACK_IA64)