Zebediah Figura : kernelbase: Use the %I length modifier to print pointer-size integers.

Alexandre Julliard julliard at winehq.org
Sun Feb 2 12:56:44 CST 2020


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

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Thu Jan 30 21:36:16 2020 -0600

kernelbase: Use the %I length modifier to print pointer-size integers.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

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

diff --git a/dlls/kernelbase/process.c b/dlls/kernelbase/process.c
index a07dddb1fc..b125f100f6 100644
--- a/dlls/kernelbase/process.c
+++ b/dlls/kernelbase/process.c
@@ -514,7 +514,7 @@ BOOL WINAPI DECLSPEC_HOTPATCH CreateProcessInternalW( HANDLE token, const WCHAR
                         }
                         break;
                     default:
-                        FIXME("Unsupported attribute %#lx.\n", attrs->attrs[i].attr);
+                        FIXME("Unsupported attribute %#Ix.\n", attrs->attrs[i].attr);
                         break;
                 }
             }




More information about the wine-cvs mailing list