OSDN Git Service

Reindent
authorMartin Storsjö <martin@martin.st>
Tue, 8 Jun 2010 11:58:22 +0000 (11:58 +0000)
committerMartin Storsjö <martin@martin.st>
Tue, 8 Jun 2010 11:58:22 +0000 (11:58 +0000)
Originally committed as revision 23534 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/http.c

index afc6111..34a3242 100644 (file)
@@ -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;
         }