Thu Jun 6 21:39:38 1996 David Mosberger-Tang <davidm@azstarnet.com>
authorRoland McGrath <roland@gnu.org>
Wed, 19 Jun 1996 06:37:43 +0000 (06:37 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 19 Jun 1996 06:37:43 +0000 (06:37 +0000)
* sysdeps/unix/bsd/sun/sunos4/tcsetattr.c (tcsetattr): Declare cmd
  as unsigned long, not as int (to avoid incorrect int->long
  promotion).

sysdeps/unix/bsd/sun/sunos4/tcsetattr.c

index 4ae139a..f88951f 100644 (file)
@@ -27,7 +27,7 @@ int
 DEFUN(tcsetattr, (fd, optional_actions, termios_p),
       int fd AND int optional_actions AND CONST struct termios *termios_p)
 {
-  int cmd;
+  unsigned long cmd;
 
   switch (optional_actions)
     {