summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorJai Menon <jmenon86@gmail.com>2009-06-06 16:46:40 +0000
committerJai Menon <jmenon86@gmail.com>2009-06-06 16:46:40 +0000
commit2b01a520315da91c50408716e0042181c4b056f2 (patch)
treee8d0175bcf86c6ec56f7fde6de48b6e3f736879c /libavformat/http.c
parent682d49f4eaa310a4958287579473982010449f95 (diff)
Cosmetics : Fix indentation after last commit.
Originally committed as revision 19125 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/http.c')
-rw-r--r--libavformat/http.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavformat/http.c b/libavformat/http.c
index f8c44ce7ae..68efbf9fac 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -279,14 +279,14 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr,
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;