From a90fbeec2ab30230838947a6210357b005bd1b53 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sat, 6 Sep 2008 11:45:10 +0000 Subject: [PATCH] Remove useless parentheses. Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra144.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index b947d67968..6192cde57d 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -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++; } /**