From e4f28e08902dc9bbd154c150eac28ddb86881b9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Tue, 8 Jun 2010 11:58:22 +0000 Subject: [PATCH] Reindent Originally committed as revision 23534 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }