summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-05-27 06:36:41 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-05-27 06:36:41 +0000
commitf0944bb74b6cc4ea16d1bd3d347ecc9cfa36b0ca (patch)
tree3769bdf2ce2f470494d215c312a677503a50f694 /libexec
parenta7b141a6b622ec887d9e7e46827b53213c63e837 (diff)
unsigned to unsigned int
Diffstat (limited to 'libexec')
-rw-r--r--libexec/getty/subr.c6
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;
};