Remove useless parentheses.

Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Vitor Sessak 17 years ago
parent 6123abad2e
commit a90fbeec2a
  1. 2
      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++;
}
/**

Loading…
Cancel
Save