From 0ddc0f47bd2a03678e1afbc384550aecb55a318f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 23 Apr 2020 14:48:15 -0300 Subject: Several details about 5.4.0 rc1 Corrected several small details: added 'const', adjusts in tabs x spaces, removed unused #includes and #defines, misspellings, etc. --- lmathlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lmathlib.c') diff --git a/lmathlib.c b/lmathlib.c index 63f6036a..86def470 100644 --- a/lmathlib.c +++ b/lmathlib.c @@ -328,7 +328,7 @@ static Rand64 nextrand (Rand64 *state) { */ /* must throw out the extra (64 - FIGS) bits */ -#define shift64_FIG (64 - FIGS) +#define shift64_FIG (64 - FIGS) /* to scale to [0, 1), multiply by scaleFIG = 2^(-FIGS) */ #define scaleFIG (l_mathop(0.5) / ((Rand64)1 << (FIGS - 1))) -- cgit v1.2.3-55-g6feb