Alexandre Julliard : compstui: Fix printf format warnings on 64-bit.

Alexandre Julliard julliard at winehq.org
Thu Jan 27 15:36:17 CST 2022


Module: wine
Branch: master
Commit: e7d0bf366864cb2b0a2a05c75207577d02ab6cf5
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=e7d0bf366864cb2b0a2a05c75207577d02ab6cf5

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Jan 27 17:54:57 2022 +0100

compstui: Fix printf format warnings on 64-bit.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/compstui/compstui_main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/compstui/compstui_main.c b/dlls/compstui/compstui_main.c
index 8dc715666c4..96ca3343963 100644
--- a/dlls/compstui/compstui_main.c
+++ b/dlls/compstui/compstui_main.c
@@ -37,7 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(compstui);
  */
 LONG WINAPI CommonPropertySheetUIA(HWND hWnd, PFNPROPSHEETUI pfnPropSheetUI, LPARAM lparam, LPDWORD pResult)
 {
-    FIXME("(%p, %p, 0x%lx, %p)\n", hWnd, pfnPropSheetUI, lparam, pResult);
+    FIXME("(%p, %p, 0x%Ix, %p)\n", hWnd, pfnPropSheetUI, lparam, pResult);
     return CPSUI_CANCEL;
 }
 
@@ -47,7 +47,7 @@ LONG WINAPI CommonPropertySheetUIA(HWND hWnd, PFNPROPSHEETUI pfnPropSheetUI, LPA
  */
 LONG WINAPI CommonPropertySheetUIW(HWND hWnd, PFNPROPSHEETUI pfnPropSheetUI, LPARAM lparam, LPDWORD pResult)
 {
-    FIXME("(%p, %p, 0x%lx, %p)\n", hWnd, pfnPropSheetUI, lparam, pResult);
+    FIXME("(%p, %p, 0x%Ix, %p)\n", hWnd, pfnPropSheetUI, lparam, pResult);
     return CPSUI_CANCEL;
 }
 
@@ -67,6 +67,6 @@ ULONG_PTR WINAPI GetCPSUIUserData(HWND hDlg)
  */
 BOOL WINAPI SetCPSUIUserData(HWND hDlg, ULONG_PTR UserData )
 {
-    FIXME("(%p, %08lx): stub\n", hDlg, UserData);
+    FIXME("(%p, %08Ix): stub\n", hDlg, UserData);
     return TRUE;
 }




More information about the wine-cvs mailing list