Commit a90fbeec authored by Vitor Sessak's avatar Vitor Sessak

Remove useless parentheses.

Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6123abad
......@@ -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++;
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment