summaryrefslogtreecommitdiffstats
path: root/common/playlist_parser.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-21 21:49:13 +0100
committerwm4 <wm4@nowhere>2013-12-21 22:13:04 +0100
commiteef36f03ea76f97c10075ae4b08e1e53e5195479 (patch)
tree9bafeac9944e717a2defe9e6f8fc753d3cdb9964 /common/playlist_parser.c
parenteba5d025d2ba682de358b792dd15e80529d6a0f1 (diff)
downloadmpv-eef36f03ea76f97c10075ae4b08e1e53e5195479.tar.bz2
mpv-eef36f03ea76f97c10075ae4b08e1e53e5195479.tar.xz
msg: rename mp_msg_log -> mp_msg
Same for companion functions.
Diffstat (limited to 'common/playlist_parser.c')
-rw-r--r--common/playlist_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/playlist_parser.c b/common/playlist_parser.c
index 2e06009db5..d871854dbb 100644
--- a/common/playlist_parser.c
+++ b/common/playlist_parser.c
@@ -560,13 +560,13 @@ static struct playlist *do_parse(struct stream* stream, bool forced,
if(success)
mp_verbose(log, "Playlist successfully parsed\n");
else {
- mp_msg_log(log,((forced==1)?MSGL_ERR:MSGL_V),"Error while parsing playlist\n");
+ mp_msg(log,((forced==1)?MSGL_ERR:MSGL_V),"Error while parsing playlist\n");
talloc_free(p.pl);
p.pl = NULL;
}
if (p.pl && !p.pl->first)
- mp_msg_log(log, ((forced==1)?MSGL_WARN:MSGL_V),"Warning: empty playlist\n");
+ mp_msg(log, ((forced==1)?MSGL_WARN:MSGL_V),"Warning: empty playlist\n");
return p.pl;
}