Eric Pouech : winedbg: Trace 64-bit integers with I64 width modifier.

Alexandre Julliard julliard at winehq.org
Fri Apr 8 14:52:20 CDT 2022


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

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Fri Apr  8 09:12:30 2022 +0200

winedbg: Trace 64-bit integers with I64 width modifier.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/winedbg/memory.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/winedbg/memory.c b/programs/winedbg/memory.c
index 208526739e2..3118637cb5e 100644
--- a/programs/winedbg/memory.c
+++ b/programs/winedbg/memory.c
@@ -114,8 +114,8 @@ BOOL memory_write_value(const struct dbg_lvalue* lvalue, DWORD size, void* value
     if (!types_get_info(&lvalue->type, TI_GET_LENGTH, &os)) return FALSE;
     if (size != os)
     {
-        dbg_printf("Size mismatch in memory_write_value, got %lu from type while expecting %lu\n",
-                   (DWORD)os, size);
+        dbg_printf("Size mismatch in memory_write_value, got %I64u from type while expecting %lu\n",
+                   os, size);
         return FALSE;
     }
 




More information about the wine-cvs mailing list