diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-16 09:55:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-16 09:55:10 +0000 |
commit | bd2f1452a52ab1f032019313283d45f48e6eb2d7 (patch) | |
tree | ec716f991f72228d5994a880365af8b7a4db8746 /bin/stty | |
parent | fc4d2f04c2b534add90a2bcc42068f6169576496 (diff) |
de-lint (long vs int vs unsigned); otto ok
Diffstat (limited to 'bin/stty')
-rw-r--r-- | bin/stty/modes.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/stty/modes.c b/bin/stty/modes.c index 1a06d47927a..9c2f3161fab 100644 --- a/bin/stty/modes.c +++ b/bin/stty/modes.c @@ -1,4 +1,4 @@ -/* $OpenBSD: modes.c,v 1.8 2003/07/02 21:19:33 deraadt Exp $ */ +/* $OpenBSD: modes.c,v 1.9 2004/09/16 09:55:09 deraadt Exp $ */ /* $NetBSD: modes.c,v 1.9 1996/05/07 18:20:09 jtc Exp $ */ /*- @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)modes.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$OpenBSD: modes.c,v 1.8 2003/07/02 21:19:33 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: modes.c,v 1.9 2004/09/16 09:55:09 deraadt Exp $"; #endif #endif /* not lint */ @@ -46,8 +46,8 @@ static char rcsid[] = "$OpenBSD: modes.c,v 1.8 2003/07/02 21:19:33 deraadt Exp $ struct modes { const char *name; - long set; - long unset; + unsigned int set; + unsigned int unset; }; /* |