summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-06-08 11:58:22 +0000
committerMartin Storsjö <martin@martin.st>2010-06-08 11:58:22 +0000
commite4f28e08902dc9bbd154c150eac28ddb86881b9b (patch)
tree2befcb2a959997149b75785e889a570e97d29aff /libavformat/http.c
parent971c3c98b0c2065b63663745a08c9fb508440067 (diff)
Reindent
Originally committed as revision 23534 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 afc61116e9..34a3242051 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -440,7 +440,7 @@ static int http_write(URLContext *h, const uint8_t *buf, int size)
if (size > 0) {
/* upload data using chunked encoding */
if(s->is_chunked) {
- 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)
return ret;
}