summaryrefslogtreecommitdiff
path: root/gdb/remote-array.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-07-11 17:52:32 +0000
committerAndrew Cagney <cagney@redhat.com>2001-07-11 17:52:32 +0000
commitc2b93372e65a4996466a5728742dfe4dcb820f53 (patch)
tree2a43a134ff57e135d8cbded36bc65dc12013fb03 /gdb/remote-array.c
parent5ff88953617f395ebc929b89df1471d3ea0e00b1 (diff)
downloadgdb-c2b93372e65a4996466a5728742dfe4dcb820f53.tar.gz
s/typedef serial_t/struct serial */
Diffstat (limited to 'gdb/remote-array.c')
-rw-r--r--gdb/remote-array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-array.c b/gdb/remote-array.c
index beb0c6bda00..dc7589aba04 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.");