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-e7000.c | |
parent | Fix Credit. (diff) | |
download | binutils-gdb-819cc324665b3ac1842b105d906308f7ab692a76.tar.gz binutils-gdb-819cc324665b3ac1842b105d906308f7ab692a76.tar.bz2 binutils-gdb-819cc324665b3ac1842b105d906308f7ab692a76.zip |
s/typedef serial_t/struct serial */
Diffstat (limited to 'gdb/remote-e7000.c')
-rw-r--r-- | gdb/remote-e7000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-e7000.c b/gdb/remote-e7000.c index 320584b94e3..2a9a176f9e1 100644 --- a/gdb/remote-e7000.c +++ b/gdb/remote-e7000.c @@ -115,7 +115,7 @@ static void expect_prompt (void); static int e7000_parse_device (char *args, char *dev_name, int baudrate); /* Variables. */ -static serial_t e7000_desc; +static struct serial *e7000_desc; /* Allow user to chose between using hardware breakpoints or memory. */ static int use_hard_breakpoints = 0; /* use sw breakpoints by default */ |