Remove useless parentheses.
authorVitor Sessak <vitor1001@gmail.com>
Sat, 6 Sep 2008 11:45:10 +0000 (11:45 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Sat, 6 Sep 2008 11:45:10 +0000 (11:45 +0000)
Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra144.c

index b947d67..6192cde 100644 (file)
@@ -214,7 +214,7 @@ static void int_to_int16(int16_t *out, const int *inp)
     int i;
 
     for (i=0; i < 30; i++)
-        *(out++) = *(inp++);
+        *out++ = *inp++;
 }
 
 /**