From 901a859ab90f58ed44854e6d1e060575bcf8372b Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Sun, 22 Nov 1998 07:41:04 +0000 Subject: [PATCH] bad long --- src/lib/libc/stdlib/rand.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/libc/stdlib/rand.c b/src/lib/libc/stdlib/rand.c index 61fb66e5..797d3b28 100644 --- a/src/lib/libc/stdlib/rand.c +++ b/src/lib/libc/stdlib/rand.c @@ -32,13 +32,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: rand.c,v 1.3 1998/11/20 11:18:50 d Exp $"; +static char *rcsid = "$OpenBSD: rand.c,v 1.4 1998/11/22 07:41:04 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include #include -static u_long next = 1; +static u_int next = 1; int rand_r(seed)