avconv: cosmetics

Replace for (;foo == 0;) with while (!foo)
This is prettier.
This commit is contained in:
Anton Khirnov 2012-08-04 12:06:30 +02:00
parent 0b26ef4228
commit c0fbf9713c

View File

@ -2136,7 +2136,7 @@ static int transcode(void)
goto fail;
#endif
for (; received_sigterm == 0;) {
while (!received_sigterm) {
int file_index, ist_index;
AVPacket pkt;