diff options
author | Stan Shebs <shebs@codesourcery.com> | 1993-11-02 02:07:03 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1993-11-02 02:07:03 +0000 |
commit | ee9feb6550c1d1e52522d1d6b15aa20ef17aa4de (patch) | |
tree | 92db714e9719199572d8da66b3b1519f7ce514b8 | |
parent | b86a1b3baa014c5fdb3ba8db34c8991fd4e768e1 (diff) | |
download | gdb-ee9feb6550c1d1e52522d1d6b15aa20ef17aa4de.zip gdb-ee9feb6550c1d1e52522d1d6b15aa20ef17aa4de.tar.gz gdb-ee9feb6550c1d1e52522d1d6b15aa20ef17aa4de.tar.bz2 |
Fix a couple typos introduced by recent checkins
-rw-r--r-- | gdb/remote-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-utils.c b/gdb/remote-utils.c index af4d431..5189bbd 100644 --- a/gdb/remote-utils.c +++ b/gdb/remote-utils.c @@ -573,9 +573,9 @@ gr_multi_scan (list, passthrough) if (passthrough) { for (p = swallowed; p < swallowed_p; ++p) - putc_unfiltered (*p, gdb_stdout); + fputc_unfiltered (*p, gdb_stdout); - putc_unfiltered (ch, gdb_stdout); + fputc_unfiltered (ch, gdb_stdout); } swallowed_p = swallowed; |