summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Lord <lord@cygnus>1993-11-09 21:29:50 +0000
committerThomas Lord <lord@cygnus>1993-11-09 21:29:50 +0000
commit753a74d977845fac73f22f696651969016974de1 (patch)
tree489aa1ca052b611d11aa3b2612fcfdac627b6402
parent346f04146c88ebc5dcdd9508e505513529514f18 (diff)
downloadbinutils-gdb-753a74d977845fac73f22f696651969016974de1.tar.gz
Same as last time (putc_unfiltered) only this time having saved the
modified source before checking it in.
-rw-r--r--gdb/remote-hms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-hms.c b/gdb/remote-hms.c
index 1ffcff75178..27611044fff 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++;