diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-07-11 17:52:32 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-07-11 17:52:32 +0000 |
commit | 819cc324665b3ac1842b105d906308f7ab692a76 (patch) | |
tree | e3784018165b88ebe8ba4a17ac651815ac705f9d /gdb/nindy-share/nindy.c | |
parent | 30120c466956627fbfdc64dde2e6415a9986e7d1 (diff) | |
download | gdb-819cc324665b3ac1842b105d906308f7ab692a76.zip gdb-819cc324665b3ac1842b105d906308f7ab692a76.tar.gz gdb-819cc324665b3ac1842b105d906308f7ab692a76.tar.bz2 |
s/typedef serial_t/struct serial */
Diffstat (limited to 'gdb/nindy-share/nindy.c')
-rw-r--r-- | gdb/nindy-share/nindy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/nindy-share/nindy.c b/gdb/nindy-share/nindy.c index 9846fc6..f32b1a2 100644 --- a/gdb/nindy-share/nindy.c +++ b/gdb/nindy-share/nindy.c @@ -89,7 +89,7 @@ #define TIMEOUT -1 int quiet = 0; /* 1 => stifle unnecessary messages */ -serial_t nindy_serial; +struct serial *nindy_serial; static int old_nindy = 0; /* 1 => use old (hex) communication protocol */ static ninStrGet(); @@ -514,7 +514,7 @@ parse_baudrate(s) static int try_baudrate (serial, brp) - serial_t serial; + struct serial *serial; struct baudrate *brp; { unsigned char c; @@ -540,7 +540,7 @@ try_baudrate (serial, brp) ******************************************************************************/ static autobaud( serial, brp ) - serial_t serial; + struct serial *serial; struct baudrate *brp; { int i; |