Alexandre Julliard : loadperf: 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: 49482c95e991118c9646765de5ef9754e6e73a9d
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=49482c95e991118c9646765de5ef9754e6e73a9d

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

loadperf: Fix printf format warnings on 64-bit.

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

---

 dlls/loadperf/loadperf_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/loadperf/loadperf_main.c b/dlls/loadperf/loadperf_main.c
index c58f46f4204..a8ed70bfe7a 100644
--- a/dlls/loadperf/loadperf_main.c
+++ b/dlls/loadperf/loadperf_main.c
@@ -71,7 +71,7 @@ DWORD WINAPI InstallPerfDllA(LPCSTR computer, LPCSTR ini, ULONG_PTR flags)
  */
 DWORD WINAPI InstallPerfDllW(LPCWSTR computer, LPCWSTR ini, ULONG_PTR flags)
 {
-    FIXME("(%s, %s, %lx)\n", debugstr_w(computer), debugstr_w(ini), flags);
+    FIXME("(%s, %s, %Ix)\n", debugstr_w(computer), debugstr_w(ini), flags);
     return ERROR_SUCCESS;
 }
 




More information about the wine-cvs mailing list