Skip to content
Snippets Groups Projects
Commit 32548061 authored by Niels Möller's avatar Niels Möller
Browse files

Removed redundant ().

Rev: nettle/shadata.c:1.2
parent 2f7d830f
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ int main(int argc UNUSED, char **argv UNUSED)
for (i = 0; i < 64; )
{
double root = pow(primes[i++], third);
double fraction = root - (floor(root));
double fraction = root - floor(root);
double value = floor(ldexp(fraction, 32));
printf("0x%lxUL, ", (unsigned long) value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment