From 17b1493f747d5bf10bf91259194dbc7261c9c046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Mon, 21 Jun 2010 19:02:35 +0000 Subject: Reindent Originally committed as revision 23684 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/http.c') 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 || -- cgit v1.2.3