mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Remove useless parentheses.
Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6123abad2e
commit
a90fbeec2a
@ -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…
Reference in New Issue
Block a user