diff options
Diffstat (limited to 'gdb/remote-hms.c')
-rw-r--r-- | gdb/remote-hms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-hms.c b/gdb/remote-hms.c index 1ffcff7..2761104 100644 --- a/gdb/remote-hms.c +++ b/gdb/remote-hms.c @@ -744,12 +744,12 @@ hms_wait (pid, status) /* Print out any characters which have been swallowed. */ for (p = swallowed; p < swallowed_p; ++p) - putc_unfiltered (*p, gdb_stdout); + putc_unfiltered (*p); swallowed_p = swallowed; if ((ch != '\r' && ch != '\n') || swallowed_cr > 10) { - putc_unfiltered (ch, gdb_stdout); + putc_unfiltered (ch); swallowed_cr = 10; } swallowed_cr++; |