summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-02-09 18:59:57 +0100
committerwm4 <wm4@nowhere>2014-02-12 22:33:09 +0100
commitd4a55138479c0343122250a30c210bed91ece4b9 (patch)
tree73e8c1996fcf7eb9500ad511daf49ac25c7de9b4
parentd42212cd679d99e2c865d84c618c1e661cd5fa16 (diff)
downloadmpv-d4a55138479c0343122250a30c210bed91ece4b9.tar.bz2
mpv-d4a55138479c0343122250a30c210bed91ece4b9.tar.xz
demux: fix some newlines in output messages
-rw-r--r--demux/demux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demux/demux.c b/demux/demux.c
index fe5ac6a3d6..e38b0f0c1d 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -226,7 +226,7 @@ struct demux_packet *demux_copy_packet(struct demux_packet *dp)
struct sh_stream *new_sh_stream(demuxer_t *demuxer, enum stream_type type)
{
if (demuxer->num_streams > MAX_SH_STREAMS) {
- MP_WARN(demuxer, "Too many streams.");
+ MP_WARN(demuxer, "Too many streams.\n");
return NULL;
}
@@ -373,7 +373,7 @@ static bool demux_check_queue_full(demuxer_t *demux)
overflow:
if (!demux->warned_queue_overflow) {
- MP_ERR(demux, "\nToo many packets in the demuxer "
+ MP_ERR(demux, "Too many packets in the demuxer "
"packet queue (video: %d packets in %d bytes, audio: %d "
"packets in %d bytes, sub: %d packets in %d bytes).\n",
count_packs(demux, STREAM_VIDEO), count_bytes(demux, STREAM_VIDEO),