[FFmpeg-cvslog] r23684 - trunk/libavformat/http.c

mstorsjo subversion
Mon Jun 21 21:02:35 CEST 2010


Author: mstorsjo
Date: Mon Jun 21 21:02:35 2010
New Revision: 23684

Log:
Reindent

Modified:
   trunk/libavformat/http.c

Modified: trunk/libavformat/http.c
==============================================================================
--- trunk/libavformat/http.c	Mon Jun 21 21:02:05 2010	(r23683)
+++ trunk/libavformat/http.c	Mon Jun 21 21:02:35 2010	(r23684)
@@ -439,7 +439,7 @@ static int http_write(URLContext *h, con
      * 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 ||



More information about the ffmpeg-cvslog mailing list