Browse Source

Cosmetics : Fix indentation after last commit.

Originally committed as revision 19125 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Jai Menon 16 years ago
parent
commit
2b01a52031
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      libavformat/http.c

+ 7
- 7
libavformat/http.c View File

@@ -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;


Loading…
Cancel
Save