From c0fbf9713c5e167501007351532de2400060c7e6 Mon Sep 17 00:00:00 2001
From: Anton Khirnov <anton@khirnov.net>
Date: Sat, 4 Aug 2012 12:06:30 +0200
Subject: [PATCH] avconv: cosmetics

Replace for (;foo == 0;) with while (!foo)
This is prettier.
---
 avconv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/avconv.c b/avconv.c
index 416c07c109..e6ace30151 100644
--- a/avconv.c
+++ b/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;