Simple bug fix for x86_86

* syscall.c (printcall): Use x86_64_regs.rip, not x86_64_regs.ip.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2013-02-05 18:18:07 +01:00
parent 0b99a8ac3b
commit df39e56d2d

View File

@ -741,7 +741,7 @@ printcall(struct tcb *tcp)
tprintf("[%16lx] ", psw);
# endif
#elif defined(X86_64) || defined(X32)
tprintf("[%16lx] ", x86_64_regs.ip);
tprintf("[%16lx] ", x86_64_regs.rip);
#elif defined(IA64)
long ip;