From 25968c3953b078897a53c6dbe60756be8fee060a Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Fri, 8 Oct 2010 08:43:10 +0000 Subject: Reindent Originally committed as revision 25406 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/udp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavformat/udp.c') 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) { -- cgit v1.2.3