Use filtered output in *-tdep commands
Various targets introduce their own commands, which then use unfiltered output. It's better to use filtered output by default, so this patch fixes the instances I found.
This commit is contained in:
parent
7f762abff6
commit
56c5b29b61
5 changed files with 23 additions and 23 deletions
|
@ -1589,7 +1589,7 @@ avr_io_reg_read_command (const char *args, int from_tty)
|
|||
return;
|
||||
}
|
||||
|
||||
printf_unfiltered (_("Target has %u io registers:\n\n"), nreg);
|
||||
printf_filtered (_("Target has %u io registers:\n\n"), nreg);
|
||||
|
||||
/* only fetch up to 8 registers at a time to keep the buffer small */
|
||||
int step = 8;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue