summaryrefslogtreecommitdiff
path: root/libavformat/udp.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-10-08 08:43:10 +0000
committerMartin Storsjö <martin@martin.st>2010-10-08 08:43:10 +0000
commit25968c3953b078897a53c6dbe60756be8fee060a (patch)
treeb7992ec194c6d76c4652d1d671659015a4d15ea8 /libavformat/udp.c
parent6766a354f7a263241619428a43a92cdc40132086 (diff)
Reindent
Originally committed as revision 25406 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r--libavformat/udp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c
index d30af57975..2200c549ca 100644
--- a/libavformat/udp.c
+++ b/libavformat/udp.c
@@ -455,9 +455,9 @@ static int udp_write(URLContext *h, const uint8_t *buf, int size)
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) {