Commit 25968c39 authored by Martin Storsjö's avatar Martin Storsjö

Reindent

Originally committed as revision 25406 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6766a354
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment