Remove useless parentheses.

Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-09-06 11:45:10 +00:00
parent 6123abad2e
commit a90fbeec2a
1 changed files with 1 additions and 1 deletions

View 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++;
}
/**