diff options
author | Martin Storsjö <martin@martin.st> | 2010-06-21 19:02:35 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-06-21 19:02:35 +0000 |
commit | 17b1493f747d5bf10bf91259194dbc7261c9c046 (patch) | |
tree | 45b8f905019a5c087b9ca2dff0ede35015c6a59b | |
parent | ea02b593a1bdfaec16934dd1fc64c55653aedb76 (diff) | |
download | ffmpeg-17b1493f747d5bf10bf91259194dbc7261c9c046.tar.gz |
Reindent
Originally committed as revision 23684 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c index d4300a67c1..27d4e8ac10 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -439,7 +439,7 @@ static int http_write(URLContext *h, const uint8_t *buf, int size) * signal EOF */ if (size > 0) { /* upload data using chunked encoding */ - snprintf(temp, sizeof(temp), "%x\r\n", size); + snprintf(temp, sizeof(temp), "%x\r\n", size); if ((ret = url_write(s->hd, temp, strlen(temp))) < 0 || (ret = url_write(s->hd, buf, size)) < 0 || |