[FFmpeg-cvslog] r25406 - trunk/libavformat/udp.c

mstorsjo subversion
Fri Oct 8 10:43:10 CEST 2010


Author: mstorsjo
Date: Fri Oct  8 10:43:10 2010
New Revision: 25406

Log:
Reindent

Modified:
   trunk/libavformat/udp.c

Modified: trunk/libavformat/udp.c
==============================================================================
--- trunk/libavformat/udp.c	Fri Oct  8 10:42:30 2010	(r25405)
+++ trunk/libavformat/udp.c	Fri Oct  8 10:43:10 2010	(r25406)
@@ -455,9 +455,9 @@ static int udp_write(URLContext *h, cons
 
     for(;;) {
         if (!s->is_connected) {
-        ret = sendto (s->udp_fd, buf, size, 0,
-                      (struct sockaddr *) &s->dest_addr,
-                      s->dest_addr_len);
+            ret = sendto (s->udp_fd, buf, size, 0,
+                          (struct sockaddr *) &s->dest_addr,
+                          s->dest_addr_len);
         } else
             ret = send(s->udp_fd, buf, size, 0);
         if (ret < 0) {



More information about the ffmpeg-cvslog mailing list