avconv: cosmetics

Replace for (;foo == 0;) with while (!foo)
This is prettier.
pull/28/head
Anton Khirnov 13 years ago
parent 0b26ef4228
commit c0fbf9713c
  1. 2
      avconv.c

@ -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;

Loading…
Cancel
Save