From 753a74d977845fac73f22f696651969016974de1 Mon Sep 17 00:00:00 2001 From: Thomas Lord Date: Tue, 9 Nov 1993 21:29:50 +0000 Subject: [PATCH] Same as last time (putc_unfiltered) only this time having saved the modified source before checking it in. --- gdb/remote-hms.c | 4 ++-- 1 file 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++; -- 2.7.4