Commit f61e9f8a authored by Marton Balint's avatar Marton Balint

avformat/udp: add newline after warning

Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
parent 1812b425
...@@ -861,7 +861,7 @@ static int udp_open(URLContext *h, const char *uri, int flags) ...@@ -861,7 +861,7 @@ static int udp_open(URLContext *h, const char *uri, int flags)
} else { } else {
av_log(h, AV_LOG_DEBUG, "end receive buffer size reported is %d\n", tmp); av_log(h, AV_LOG_DEBUG, "end receive buffer size reported is %d\n", tmp);
if(tmp < s->buffer_size) if(tmp < s->buffer_size)
av_log(h, AV_LOG_WARNING, "attempted to set receive buffer to size %d but it only ended up set as %d", s->buffer_size, tmp); av_log(h, AV_LOG_WARNING, "attempted to set receive buffer to size %d but it only ended up set as %d\n", s->buffer_size, tmp);
} }
/* make the socket non-blocking */ /* make the socket non-blocking */
......
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