Browse code

Reindent

Originally committed as revision 23684 to svn://svn.ffmpeg.org/ffmpeg/trunk

Martin Storsjö authored on 2010/06/22 04:02:35
Showing 1 changed files
... ...
@@ -439,7 +439,7 @@ static int http_write(URLContext *h, const uint8_t *buf, int size)
439 439
      * signal EOF */
440 440
     if (size > 0) {
441 441
         /* upload data using chunked encoding */
442
-            snprintf(temp, sizeof(temp), "%x\r\n", size);
442
+        snprintf(temp, sizeof(temp), "%x\r\n", size);
443 443
 
444 444
         if ((ret = url_write(s->hd, temp, strlen(temp))) < 0 ||
445 445
             (ret = url_write(s->hd, buf, size)) < 0 ||