From 954bcf5fe0d44f224c404628b0966bc63277548a Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 16 Apr 2003 18:40:04 +0000 Subject: [PATCH] Minor source formatting fixes. --- Modules/_randommodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/_randommodule.c b/Modules/_randommodule.c index 35f10a5d366..00863b6691e 100644 --- a/Modules/_randommodule.c +++ b/Modules/_randommodule.c @@ -67,7 +67,7 @@ /* ---------------------------------------------------------------*/ #include "Python.h" -#include // for seeding to current time +#include /* for seeding to current time */ /* Period parameters -- These are all magic. Don't change. */ #define N 624 @@ -110,7 +110,7 @@ genrand_int32(RandomObject *self) for (;kk> 1) ^ mag01[y & 0x1UL]; - } + } y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); mt[N-1] = mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1UL];