# HG changeset patch # User vitor # Date 1210876145 0 # Node ID f3b2012e7aaec03d0e0b0f53d42053c68cf2b4ee # Parent d8347a6a3447a1ae4e893bb7c3b8362490cac0f4 Cosmetics: remove useless parenthesis diff -r d8347a6a3447 -r f3b2012e7aae ra144.c --- a/ra144.c Thu May 15 18:28:24 2008 +0000 +++ b/ra144.c Thu May 15 18:29:05 2008 +0000 @@ -114,7 +114,7 @@ b1[x] = a1[x] << 4; for (y=0; y < x; y++) - b1[y] = ((a1[x] * (b2[x-y-1])) >> 12) + b2[y]; + b1[y] = ((a1[x] * b2[x-y-1]) >> 12) + b2[y]; FFSWAP(int *, b1, b2); }