* i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass

`ops' to recursive call.
This commit is contained in:
Pedro Alves 2009-02-23 00:42:06 +00:00
parent 3ca747ab0c
commit 84e473c82e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-02-23 Pedro Alves <pedro@codesourcery.com>
* i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass
`ops' to recursive call.
2009-02-23 Pedro Alves <pedro@codesourcery.com>
* corelow.c (get_core_registers): Adjust.

View File

@ -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;
}