summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-02-09 18:59:57 +0100
committerwm4 <wm4@nowhere>2014-02-09 18:59:57 +0100
commitad782a53ef38c673c677ca637baf6e875c7c1bd0 (patch)
tree1914da6cd05b49a486d699dc020c53345b70815e /demux
parentc0771b8144205e128ebe65f534c580c54b42436e (diff)
downloadmpv-ad782a53ef38c673c677ca637baf6e875c7c1bd0.tar.bz2
mpv-ad782a53ef38c673c677ca637baf6e875c7c1bd0.tar.xz
demux: fix some newlines in output messages
Diffstat (limited to 'demux')
-rw-r--r--demux/demux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demux/demux.c b/demux/demux.c
index ae50ae704a..e2907d5ee3 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),