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/remote-array.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/remote-array.c')
-rw-r--r-- | gdb/remote-array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-array.c b/gdb/remote-array.c index beb0c6b..dc7589a 100644 --- a/gdb/remote-array.c +++ b/gdb/remote-array.c @@ -90,7 +90,7 @@ static int timeout = 30; * Descriptor for I/O to remote machine. Initialize it to NULL so that * array_open knows that we don't have a file open when the program starts. */ -serial_t array_desc = NULL; +struct serial *array_desc = NULL; /* * this array of registers need to match the indexes used by GDB. The @@ -694,7 +694,7 @@ array_wait (ptid_t ptid, struct target_waitstatus *status) int old_timeout = timeout; int result, i; char c; - serial_t tty_desc; + struct serial *tty_desc; serial_ttystate ttystate; debuglogs (1, "array_wait (), printing extraneous text."); |