diff options
author | Stu Grossman <grossman@cygnus> | 1995-03-07 08:57:32 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1995-03-07 08:57:32 +0000 |
commit | 7baea9460866303161d1598eddb93a936973ef1d (patch) | |
tree | 277f3430e52757aa8273e70c4743415d91abbcd1 /gdb/remote-hms.c | |
parent | 236274b9f8702183dc674bc53e4e09fc7beb9d0b (diff) | |
download | gdb-7baea9460866303161d1598eddb93a936973ef1d.zip gdb-7baea9460866303161d1598eddb93a936973ef1d.tar.gz gdb-7baea9460866303161d1598eddb93a936973ef1d.tar.bz2 |
* defs.h utils.c remote-hms.c remote-pa.c remote.c: Fix defs and
usage of fputc_unfiltered and putchar_unfiltered. Eliminate
putc_unfiltered (it's superfluous).
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 4305ef2..371fb38 100644 --- a/gdb/remote-hms.c +++ b/gdb/remote-hms.c @@ -521,12 +521,12 @@ hms_wait (pid, status) /* Print out any characters which have been swallowed. */ for (p = swallowed; p < swallowed_p; ++p) - putc_unfiltered (*p); + putchar_unfiltered (*p); swallowed_p = swallowed; if ((ch != '\r' && ch != '\n') || swallowed_cr > 10) { - putc_unfiltered (ch); + putchar_unfiltered (ch); swallowed_cr = 10; } swallowed_cr++; |