From: Niels Möller Date: Sat, 27 Mar 2010 20:51:59 +0000 (+0100) Subject: Removed redundant (). X-Git-Tag: camellia_32bit_20100720~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=32548061c04212f9c0bbbfec76809055084155d6;p=thirdparty%2Fnettle.git Removed redundant (). Rev: nettle/shadata.c:1.2 --- diff --git a/shadata.c b/shadata.c index d898c665..3275f0ce 100644 --- a/shadata.c +++ b/shadata.c @@ -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);