diff options
author | Martin Herkt <lachs0r@srsfckn.biz> | 2013-09-20 00:02:49 +0200 |
---|---|---|
committer | Martin Herkt <lachs0r@srsfckn.biz> | 2013-09-20 00:04:39 +0200 |
commit | ed2d67b6d7585a5db5411f230fc8dcd27f9e85fc (patch) | |
tree | 45701496a05ad26ea8dbe82a592859bacea783af /video | |
parent | 061b6ab3aaf08e3f1ff65b19efca940ed43e7db2 (diff) | |
download | mpv-ed2d67b6d7585a5db5411f230fc8dcd27f9e85fc.tar.bz2 mpv-ed2d67b6d7585a5db5411f230fc8dcd27f9e85fc.tar.xz |
vo/x11_common: remove superfluous msg prefixes
Diffstat (limited to 'video')
-rw-r--r-- | video/out/x11_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/x11_common.c b/video/out/x11_common.c index 7c16e253a0..a364b0c912 100644 --- a/video/out/x11_common.c +++ b/video/out/x11_common.c @@ -463,7 +463,7 @@ int vo_x11_init(struct vo *vo) x11->display = XOpenDisplay(dispName); if (!x11->display) { MP_MSG(x11, vo->probing ? MSGL_V : MSGL_ERR, - "vo: couldn't open the X11 display (%s)!\n", dispName); + "couldn't open the X11 display (%s)!\n", dispName); talloc_free(x11); vo->x11 = NULL; @@ -481,7 +481,7 @@ int vo_x11_init(struct vo *vo) x11->xim = XOpenIM(x11->display, NULL, NULL, NULL); if (!x11->xim) { MP_MSG(x11, vo->probing ? MSGL_V : MSGL_ERR, - "vo: couldn't find a valid X input method!\n"); + "couldn't find a valid X input method!\n"); XCloseDisplay(x11->display); talloc_free(x11); |