diff options
author | 2014-12-09 00:02:18 +0000 | |
---|---|---|
committer | 2014-12-09 00:02:18 +0000 | |
commit | 46b544962932c11d253a7fcb9bbf53abbe03f0f9 (patch) | |
tree | 11f805563f0abd3b165f593242660f4daa2c2d2d /lib/libc/stdlib/mrand48.c | |
parent | sync (diff) | |
download | wireguard-openbsd-46b544962932c11d253a7fcb9bbf53abbe03f0f9.tar.xz wireguard-openbsd-46b544962932c11d253a7fcb9bbf53abbe03f0f9.zip |
more standardsier: cast to int to make sure we keep the negative numbers.
observed by jonas termansen
Diffstat (limited to 'lib/libc/stdlib/mrand48.c')
-rw-r--r-- | lib/libc/stdlib/mrand48.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/mrand48.c b/lib/libc/stdlib/mrand48.c index 7bfccbbf837..0568a7ff93e 100644 --- a/lib/libc/stdlib/mrand48.c +++ b/lib/libc/stdlib/mrand48.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mrand48.c,v 1.4 2014/12/08 21:45:20 deraadt Exp $ */ +/* $OpenBSD: mrand48.c,v 1.5 2014/12/09 00:02:18 tedu Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -20,7 +20,7 @@ long mrand48(void) { if (__rand48_deterministic == 0) - return arc4random(); + return (int)arc4random(); __dorand48(__rand48_seed); return ((long) __rand48_seed[2] << 16) + (long) __rand48_seed[1]; } |