From 3e1f199d9076db124c95fd0475b1ce73e079ac21 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Fri, 6 Feb 1998 01:49:08 +0000 Subject: size_t n in initstate(); XPG --- src/lib/libc/stdlib/random.3 | 4 ++-- src/lib/libc/stdlib/random.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/libc/stdlib/random.3 b/src/lib/libc/stdlib/random.3 index 6188c2a431..87a4fe253f 100644 --- a/src/lib/libc/stdlib/random.3 +++ b/src/lib/libc/stdlib/random.3 @@ -29,7 +29,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: random.3,v 1.3 1996/08/19 08:33:46 tholo Exp $ +.\" $OpenBSD: random.3,v 1.4 1998/02/06 01:49:08 deraadt Exp $ .\" .Dd April 19, 1991 .Dt RANDOM 3 @@ -47,7 +47,7 @@ .Ft void .Fn srandom "unsigned seed" .Ft char * -.Fn initstate "unsigned seed" "char *state" "int n" +.Fn initstate "unsigned seed" "char *state" "size_t n" .Ft char * .Fn setstate "char *state" .Sh DESCRIPTION diff --git a/src/lib/libc/stdlib/random.c b/src/lib/libc/stdlib/random.c index 46b67b5ec7..1ac61f2cec 100644 --- a/src/lib/libc/stdlib/random.c +++ b/src/lib/libc/stdlib/random.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: random.c,v 1.4 1996/09/15 09:31:51 tholo Exp $"; +static char *rcsid = "$OpenBSD: random.c,v 1.5 1998/02/06 01:49:08 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -242,7 +242,7 @@ char * initstate(seed, arg_state, n) u_int seed; /* seed for R.N.G. */ char *arg_state; /* pointer to state array */ - int n; /* # bytes of state info */ + size_t n; /* # bytes of state info */ { register char *ostate = (char *)(&state[-1]); -- cgit v1.2.3-55-g6feb