From 57276037c1357e54730a94fb1191362d4f694252 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 24 Oct 2014 08:41:09 -0700 Subject: * Makefile: Removing trailing spaces. (GREP_CHECK): New macro. (enforce): Rewritten using GREP_CHECK, with new checks. * arith.c, combi.c, debug.c, eval.c, filter.c, gc.c, hash.c, lib.c, * lib.h, match.c, parser.l, parser.y, rand.c, regex.c, signal.c, * signal.h, stream.c, syslog.c, txr.c, unwind.c, utf8.c: Remove trailing spaces. --- rand.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rand.c') diff --git a/rand.c b/rand.c index f8880d42..396bb459 100644 --- a/rand.c +++ b/rand.c @@ -69,7 +69,7 @@ static struct cobj_ops random_state_ops = { cobj_print_op, cobj_destroy_free_op, cobj_mark_op, - cobj_hash_op + cobj_hash_op }; static val make_state(void) @@ -95,7 +95,7 @@ static rand32_t rand32(struct rand_state *r) rand32_t r2 = s9 ^ (s9 >> 11); rand32_t ns0 = RSTATE(r, 0) = r1 ^ r2; - rand32_t ns15 = s15 ^ (s15 << 2) ^ r1 ^ (r1 << 18) ^ r2 ^ (r2 << 28) ^ + rand32_t ns15 = s15 ^ (s15 << 2) ^ r1 ^ (r1 << 18) ^ r2 ^ (r2 << 28) ^ ((ns0 ^ (ns0 << 5)) & 0xda442d24ul); RSTATE(r, 15) = ns15; @@ -246,7 +246,7 @@ val random(val state, val modulus) continue; return num(out); } - } + } invalid: uw_throwf(numeric_error_s, lit("random: invalid modulus ~s"), modulus, nao); -- cgit v1.2.3