Commit c0fbf971 authored by Anton Khirnov's avatar Anton Khirnov

avconv: cosmetics

Replace for (;foo == 0;) with while (!foo)
This is prettier.
parent 0b26ef42
......@@ -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;
......
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