[vlc-commits] vout: win32: fix a log format
    Steve Lhomme 
    git at videolan.org
       
    Sat Jul  1 18:39:26 CEST 2017
    
    
  
vlc | branch: master | Steve Lhomme <robUx4 at videolabs.io> | Mon Jun 12 09:47:56 2017 +0200| [72fb1dc0620d2c9ffdac20d202283ef6d4373dca] | committer: Jean-Baptiste Kempf
vout: win32: fix a log format
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=72fb1dc0620d2c9ffdac20d202283ef6d4373dca
---
 modules/video_output/win32/common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_output/win32/common.c b/modules/video_output/win32/common.c
index c09c24d6a8..ea1ed75a0f 100644
--- a/modules/video_output/win32/common.c
+++ b/modules/video_output/win32/common.c
@@ -513,7 +513,7 @@ static void CommonChangeThumbnailClip(vout_display_t *vd, bool show)
         hr = taskbl->lpVtbl->SetThumbnailClip(taskbl, hroot,
                                                  show ? &video : NULL);
         if ( hr != S_OK )
-            msg_Err(vd, "SetThumbNailClip failed: %u", hr);
+            msg_Err(vd, "SetThumbNailClip failed: 0x%0lx", hr);
 
         taskbl->lpVtbl->Release(taskbl);
     }
    
    
More information about the vlc-commits
mailing list