[vlc-commits] xcb/x11: use msg_Err() for error

Rémi Denis-Courmont git at videolan.org
Wed Dec 19 20:11:37 CET 2018


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Dec 19 18:08:54 2018 +0200| [6ec1b870a0f57fffc65d1b8e83a4ba7837bc3e3c] | committer: Rémi Denis-Courmont

xcb/x11: use msg_Err() for error

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6ec1b870a0f57fffc65d1b8e83a4ba7837bc3e3c
---

 modules/video_output/xcb/x11.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/video_output/xcb/x11.c b/modules/video_output/xcb/x11.c
index f5ee7d2d7f..de6d77e245 100644
--- a/modules/video_output/xcb/x11.c
+++ b/modules/video_output/xcb/x11.c
@@ -132,7 +132,7 @@ static void Display (vout_display_t *vd, picture_t *pic)
         xcb_generic_error_t *e = xcb_request_check(conn, ck);
         if (e != NULL)
         {
-            msg_Dbg(vd, "%s: X11 error %d", "cannot put image", e->error_code);
+            msg_Err(vd, "%s: X11 error %d", "cannot put image", e->error_code);
             free(e);
         }
     }



More information about the vlc-commits mailing list