Merge pull request #913 from qlyoung/remove-powl

lib: remove last powl()
This commit is contained in:
David Lamparter 2017-08-04 18:19:25 +02:00 committed by GitHub
commit aebe076f37

View File

@ -404,7 +404,7 @@ DEFUN(show_hash_stats,
continue;
ssq = (long double)h->stats.ssq;
x2 = powl(h->count, 2.0);
x2 = h->count * h->count;
ldc = (long double)h->count;
full = h->size - h->stats.empty;
lf = h->count / (double)h->size;