From: Pedro Alves Date: Mon, 23 Feb 2009 00:42:06 +0000 (+0000) Subject: * i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=84e473c82efff461505b4ec749349e65b5f4e781;p=binutils-gdb.git * i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass `ops' to recursive call. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 79ed0c6a756..f0de11f7a51 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-02-23 Pedro Alves + + * i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass + `ops' to recursive call. + 2009-02-23 Pedro Alves * corelow.c (get_core_registers): Adjust. diff --git a/gdb/i386-linux-nat.c b/gdb/i386-linux-nat.c index 40755a8323f..2366474657a 100644 --- a/gdb/i386-linux-nat.c +++ b/gdb/i386-linux-nat.c @@ -484,7 +484,7 @@ i386_linux_fetch_inferior_registers (struct target_ops *ops, /* The call above might reset `have_ptrace_getregs'. */ if (!have_ptrace_getregs) { - i386_linux_fetch_inferior_registers (regcache, regno); + i386_linux_fetch_inferior_registers (ops, regcache, regno); return; }