From d1c733526062c5e1a2fb87edc35ebbaa4f9aa0fc Mon Sep 17 00:00:00 2001 From: mdw Date: Wed, 9 Oct 2002 00:35:18 +0000 Subject: [PATCH] Fix bogus type name. --- fibrand.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/fibrand.c b/fibrand.c index 6856a57..eb2e86d 100644 --- a/fibrand.c +++ b/fibrand.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: fibrand.c,v 1.3 2000/12/06 20:31:06 mdw Exp $ + * $Id: fibrand.c,v 1.4 2002/10/09 00:35:18 mdw Exp $ * * Fibonacci generator * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: fibrand.c,v $ + * Revision 1.4 2002/10/09 00:35:18 mdw + * Fix bogus type name. + * * Revision 1.3 2000/12/06 20:31:06 mdw * Simplify uniform range transformation. * @@ -147,7 +150,7 @@ void fibrand_lcseed(fibrand *f, uint32 seed) uint32 fibrand_range(fibrand *f, uint32 m) { uint32 r = 0xffffffff - (0xffffffff % m); - uint x; + uint32 x; /* --- Now generate numbers until a good one comes along --- */ -- 2.11.0