aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-pa.c
diff options
context:
space:
mode:
authorStu Grossman <grossman@cygnus>1995-03-07 08:57:32 +0000
committerStu Grossman <grossman@cygnus>1995-03-07 08:57:32 +0000
commit7baea9460866303161d1598eddb93a936973ef1d (patch)
tree277f3430e52757aa8273e70c4743415d91abbcd1 /gdb/remote-pa.c
parent236274b9f8702183dc674bc53e4e09fc7beb9d0b (diff)
downloadgdb-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-pa.c')
-rw-r--r--gdb/remote-pa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-pa.c b/gdb/remote-pa.c
index ed4286b..58837bf 100644
--- a/gdb/remote-pa.c
+++ b/gdb/remote-pa.c
@@ -1196,7 +1196,7 @@ putpkt (buf)
case '$':
if (started_error_output)
{
- putc_unfiltered ('\n');
+ putchar_unfiltered ('\n');
started_error_output = 0;
}
}
@@ -1227,7 +1227,7 @@ putpkt (buf)
started_error_output = 1;
printf_unfiltered ("putpkt: Junk: ");
}
- putc_unfiltered (ch & 0177);
+ putchar_unfiltered (ch & 0177);
}
continue;
}