made constant static

This commit is contained in:
Otmar Ertl 2018-03-10 20:44:20 +01:00
parent 633983d479
commit 44698f45e7

View File

@ -1009,7 +1009,7 @@ uint64_t hllCount(struct hllhdr *hdr, int *invalid) {
double m = HLL_REGISTERS;
double E;
int j;
double alphaInf = 0.5 / log(2.);
static double alphaInf = 0.5 / log(2.);
int regHisto[HLL_Q+2] = {0};
/* Compute register histogram */