diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-06 01:49:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-06 01:49:09 +0000 |
commit | 88ba03744641df3ab5f7e2c0ecbd9b4485d6db3d (patch) | |
tree | 05b278e4f28328e9c3180e6f162347b2d63e8b80 /lib/libc/stdlib/random.c | |
parent | 869dc543b1f19acf87fa8a4f7d7d4e871332bc21 (diff) |
size_t n in initstate(); XPG
Diffstat (limited to 'lib/libc/stdlib/random.c')
-rw-r--r-- | lib/libc/stdlib/random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c index 46b67b5ec76..1ac61f2cec8 100644 --- a/lib/libc/stdlib/random.c +++ b/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 <stdio.h> @@ -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]); |