projects
/
external
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d610b3
)
Thu Jun 6 21:39:38 1996 David Mosberger-Tang <davidm@azstarnet.com>
author
Roland McGrath
<roland@gnu.org>
Wed, 19 Jun 1996 06:37:43 +0000
(06:37 +0000)
committer
Roland 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
patch
|
blob
|
history
diff --git
a/sysdeps/unix/bsd/sun/sunos4/tcsetattr.c
b/sysdeps/unix/bsd/sun/sunos4/tcsetattr.c
index
4ae139a
..
f88951f
100644
(file)
--- a/
sysdeps/unix/bsd/sun/sunos4/tcsetattr.c
+++ b/
sysdeps/unix/bsd/sun/sunos4/tcsetattr.c
@@
-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)
{