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:
Tom Tromey 2021-12-24 22:15:42 -07:00
parent 7f762abff6
commit 56c5b29b61
5 changed files with 23 additions and 23 deletions

View file

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