summaryrefslogtreecommitdiff
path: root/libavformat/udp.c
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2020-01-14 18:51:02 +0100
committerMarton Balint <cus@passwd.hu>2020-01-25 23:16:47 +0100
commitf61e9f8aef3a13fe976c241f828fca4222d8e922 (patch)
tree80af17caa89f87cd95ecb4bd80a88b8a7e632ecc /libavformat/udp.c
parent1812b42554639175c466d4f1e401ea913fc3cccc (diff)
avformat/udp: add newline after warning
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r--libavformat/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c
index 1ab576e80e..f5f636e1af 100644
--- a/libavformat/udp.c
+++ b/libavformat/udp.c
@@ -861,7 +861,7 @@ static int udp_open(URLContext *h, const char *uri, int flags)
} else {
av_log(h, AV_LOG_DEBUG, "end receive buffer size reported is %d\n", tmp);
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 */