changeset 7416:a65363f8ab4b libavcodec

Cosmetics: remove useless parenthesis
author vitor
date Sat, 26 Jul 2008 14:38:29 +0000
parents 649496faa1d2
children 5b281979b60e
files ra288.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ra288.c	Sat Jul 26 14:35:50 2008 +0000
+++ b/ra288.c	Sat Jul 26 14:38:29 2008 +0000
@@ -51,7 +51,7 @@
 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 */