summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-06-21 19:02:35 +0000
committerMartin Storsjö <martin@martin.st>2010-06-21 19:02:35 +0000
commit17b1493f747d5bf10bf91259194dbc7261c9c046 (patch)
tree45b8f905019a5c087b9ca2dff0ede35015c6a59b /libavformat/http.c
parentea02b593a1bdfaec16934dd1fc64c55653aedb76 (diff)
Reindent
Originally committed as revision 23684 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/http.c')
-rw-r--r--libavformat/http.c2
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 ||