From 6396e0c04abed236a203303f7e9085bfd313d9dd Mon Sep 17 00:00:00 2001 From: Kung Hsu Date: Sat, 4 Feb 1995 00:51:30 +0000 Subject: [PATCH] * ser-go32-para.c (dos_read): fix syntax errors. --- gdb/ChangeLog | 4 ++++ gdb/ser-go32-para.c | 9 +++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f952444fd20..612dd669445 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Fri Feb 3 16:47:31 1995 Kung Hsu + + * ser-go32-para.c (dos_read): fix syntax errors. + Fri Feb 3 11:19:20 1995 Stu Grossman (grossman@cygnus.com) * core.c (dis_asm_read_memory), defs.h, gdbtk.c (gdb_disassemble), diff --git a/gdb/ser-go32-para.c b/gdb/ser-go32-para.c index 60467797c6a..707398efac3 100644 --- a/gdb/ser-go32-para.c +++ b/gdb/ser-go32-para.c @@ -18,6 +18,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "defs.h" +#include "serial.h" #include #if 0 @@ -40,7 +41,7 @@ static void go32_close PARAMS ((serial_t scb)); static serial_ttystate go32_get_tty_state PARAMS ((serial_t scb)); static int go32_set_tty_state PARAMS ((serial_t scb, serial_ttystate state)); static unsigned long getivec PARAMS ((int which)); -static int dos_read PARAMS ((int fd, char *buf, int len, int timeout)); +static int dos_read PARAMS ((int fd, char *buf, int len)); static int dos_write PARAMS ((int fd, const char *buf, int len)); #if 0 @@ -120,7 +121,7 @@ go32_open (scb, name) serial_t scb; const char *name; { - int port; + int port, ret; if (strncasecmp (name, "lpt", 3) != 0) { @@ -136,8 +137,8 @@ go32_open (scb, name) return -11; } - return = biosprn (1, 0, port); - if (!return) + ret = biosprn (1, 0, port); + if (!ret) return -1; scb->fd = port; -- 2.30.2