[vlc-commits] vout:drawable: fix the format modifier for a uintptr_t

Steve Lhomme git at videolan.org
Wed Jul 11 10:52:36 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jul 11 10:38:24 2018 +0200| [c7dfe07ae615ecfbf002335a15309b0e9182a4ee] | committer: Steve Lhomme

vout:drawable: fix the format modifier for a uintptr_t

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

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

diff --git a/modules/video_output/drawable.c b/modules/video_output/drawable.c
index 4db635cee9..71c897328b 100644
--- a/modules/video_output/drawable.c
+++ b/modules/video_output/drawable.c
@@ -79,7 +79,7 @@ static int Open (vout_window_t *wnd, const vout_window_cfg_t *cfg)
         for (/*n = 0*/; used[n]; n++)
             if (used[n] == val)
             {
-                msg_Warn (wnd, "HWND 0x%zX is busy", val);
+                msg_Warn (wnd, "HWND 0x%" PRIXPTR " is busy", val);
                 val = 0;
                 goto skip;
             }



More information about the vlc-commits mailing list