changeset 5008:370160e040d9 libavformat

Cosmetics : Fix indentation after last commit.
author jai_menon
date Sat, 06 Jun 2009 16:46:40 +0000
parents 1d5f8836c8a8
children 822a36d7ac0a
files http.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/http.c	Sat Jun 06 16:44:21 2009 +0000
+++ b/http.c	Sat Jun 06 16:46:40 2009 +0000
@@ -279,14 +279,14 @@
         if (http_get_line(s, line, sizeof(line)) < 0)
             return AVERROR(EIO);
 #ifdef DEBUG
-            printf("header='%s'\n", line);
+        printf("header='%s'\n", line);
 #endif
-            err = process_line(h, line, s->line_count, new_location);
-            if (err < 0)
-                return err;
-            if (err == 0)
-                break;
-            s->line_count++;
+        err = process_line(h, line, s->line_count, new_location);
+        if (err < 0)
+            return err;
+        if (err == 0)
+            break;
+        s->line_count++;
     }
 
     return (off == s->off) ? 0 : -1;