diff options
author | Martin Storsjö <martin@martin.st> | 2010-06-08 11:58:22 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-06-08 11:58:22 +0000 |
commit | e4f28e08902dc9bbd154c150eac28ddb86881b9b (patch) | |
tree | 2befcb2a959997149b75785e889a570e97d29aff | |
parent | 971c3c98b0c2065b63663745a08c9fb508440067 (diff) | |
download | ffmpeg-e4f28e08902dc9bbd154c150eac28ddb86881b9b.tar.gz |
Reindent
Originally committed as revision 23534 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 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; } |