From efa86ebe4ce257b654e26427a89d51f8223aa347 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sat, 26 Jul 2008 14:38:29 +0000 Subject: [PATCH] Cosmetics: remove useless parenthesis Originally committed as revision 14418 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra288.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 6b960780480..1808e333fb2 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -51,7 +51,7 @@ static inline float scalar_product_float(const float * v1, const float * v2, static void colmult(float *tgt, const float *m1, const float *m2, int n) { while (n--) - *(tgt++) = (*(m1++)) * (*(m2++)); + *tgt++ = *m1++ * *m2++; } /* Decode and produce output */ -- 2.39.2