diff options
author | Martin Storsjö <martin@martin.st> | 2010-10-08 08:43:10 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-10-08 08:43:10 +0000 |
commit | 25968c3953b078897a53c6dbe60756be8fee060a (patch) | |
tree | b7992ec194c6d76c4652d1d671659015a4d15ea8 /libavformat/udp.c | |
parent | 6766a354f7a263241619428a43a92cdc40132086 (diff) | |
download | ffmpeg-25968c3953b078897a53c6dbe60756be8fee060a.tar.gz |
Reindent
Originally committed as revision 25406 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r-- | libavformat/udp.c | 6 |
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) { |