[FFmpeg-cvslog] r19125 - trunk/libavformat/http.c

jai_menon subversion
Sat Jun 6 18:46:41 CEST 2009


Author: jai_menon
Date: Sat Jun  6 18:46:40 2009
New Revision: 19125

Log:
Cosmetics : Fix indentation after last commit.

Modified:
   trunk/libavformat/http.c

Modified: trunk/libavformat/http.c
==============================================================================
--- trunk/libavformat/http.c	Sat Jun  6 18:44:21 2009	(r19124)
+++ trunk/libavformat/http.c	Sat Jun  6 18:46:40 2009	(r19125)
@@ -279,14 +279,14 @@ static int http_connect(URLContext *h, c
         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;



More information about the ffmpeg-cvslog mailing list