diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 06:36:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 06:36:41 +0000 |
commit | f0944bb74b6cc4ea16d1bd3d347ecc9cfa36b0ca (patch) | |
tree | 3769bdf2ce2f470494d215c312a677503a50f694 /libexec | |
parent | a7b141a6b622ec887d9e7e46827b53213c63e837 (diff) |
unsigned to unsigned int
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/getty/subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/getty/subr.c b/libexec/getty/subr.c index d906d6b5f78..1ac1b2f459f 100644 --- a/libexec/getty/subr.c +++ b/libexec/getty/subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr.c,v 1.15 2002/02/16 21:27:30 millert Exp $ */ +/* $OpenBSD: subr.c,v 1.16 2002/05/27 06:36:40 deraadt Exp $ */ /* * Copyright (c) 1983, 1993 @@ -35,7 +35,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)subr.c 8.1 (Berkeley) 6/4/93";*/ -static char rcsid[] = "$OpenBSD: subr.c,v 1.15 2002/02/16 21:27:30 millert Exp $"; +static char rcsid[] = "$OpenBSD: subr.c,v 1.16 2002/05/27 06:36:40 deraadt Exp $"; #endif /* not lint */ /* @@ -497,7 +497,7 @@ long flags; #ifdef XXX_DELAY struct delayval { - unsigned delay; /* delay in ms */ + unsigned int delay; /* delay in ms */ int bits; }; |