Consistently use fprintf_filtered when displaying MIPS registers.
One line was using printf_filtered instead of fprintf_filtered to the requested file. gdb/ChangeLog: * mips-tdep.c (print_gp_register_row): Replace printf_filtered with fprintf_filtered.
This commit is contained in:
parent
750eaa47f1
commit
428544e8ae
2 changed files with 6 additions and 1 deletions
|
@ -6539,7 +6539,7 @@ print_gp_register_row (struct ui_file *file, struct frame_info *frame,
|
|||
for (byte = 0;
|
||||
byte < (mips_abi_regsize (gdbarch)
|
||||
- register_size (gdbarch, regnum)); byte++)
|
||||
printf_filtered (" ");
|
||||
fprintf_filtered (file, " ");
|
||||
/* Now print the register value in hex, endian order. */
|
||||
if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
|
||||
for (byte =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue