Commit 2b01a520 authored by Jai Menon's avatar Jai Menon

Cosmetics : Fix indentation after last commit.

Originally committed as revision 19125 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 682d49f4
...@@ -279,14 +279,14 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr, ...@@ -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) if (http_get_line(s, line, sizeof(line)) < 0)
return AVERROR(EIO); return AVERROR(EIO);
#ifdef DEBUG #ifdef DEBUG
printf("header='%s'\n", line); printf("header='%s'\n", line);
#endif #endif
err = process_line(h, line, s->line_count, new_location); err = process_line(h, line, s->line_count, new_location);
if (err < 0) if (err < 0)
return err; return err;
if (err == 0) if (err == 0)
break; break;
s->line_count++; s->line_count++;
} }
return (off == s->off) ? 0 : -1; return (off == s->off) ? 0 : -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment