Skip to content
Snippets Groups Projects
Commit c0fbf971 authored by Anton Khirnov's avatar Anton Khirnov
Browse files

avconv: cosmetics

Replace for (;foo == 0;) with while (!foo)
This is prettier.
parent 0b26ef42
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment