summaryrefslogtreecommitdiffstats
path: root/rand.c
diff options
context:
space:
mode:
Diffstat (limited to 'rand.c')
-rw-r--r--rand.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/rand.c b/rand.c
index 02c42c18..b28398ba 100644
--- a/rand.c
+++ b/rand.c
@@ -218,8 +218,9 @@ val random(val state, val modulus)
goto invalid;
for (;;) {
cnum out = 0;
-
#if SIZEOF_PTR >= 8
+ int i;
+
for (i = 0; i < rands_needed; i++) {
rand32_t rnd = rand32(r);
out <<= 32;