Commit 37a4adee authored by vitor's avatar vitor

Remove useless parenthesis

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15222 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 52e51b5d
......@@ -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