vlc/vlc-2.2 | branch: master | Rémi Denis-Courmont <[email protected]> | Thu Oct 9 22:30:44 2014 +0300| [7644f23cce73b87b18e08b4ba9ea3a772e8f249d] | committer: Rémi Denis-Courmont
msw: fix format string (cherry picked from commit e8ab8fb6b40d315632da311de7a2e03002a528c5) > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=7644f23cce73b87b18e08b4ba9ea3a772e8f249d --- modules/video_output/msw/win32touch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/video_output/msw/win32touch.c b/modules/video_output/msw/win32touch.c index 704a99c..122af40 100644 --- a/modules/video_output/msw/win32touch.c +++ b/modules/video_output/msw/win32touch.c @@ -150,7 +150,7 @@ LRESULT DecodeGesture( vlc_object_t *p_this, win32_gesture_sys_t *p_gesture, } break; default: - msg_Err( p_this, "Unmanaged dwFlag: %i", gi.dwFlags ); + msg_Err( p_this, "Unmanaged dwFlag: %lx", gi.dwFlags ); } bHandled = TRUE; break; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
