[PATCH 02/17] programs/winedbg: let savable variables' size be a DWORD

Eric Pouech eric.pouech at gmail.com
Tue Dec 7 11:45:27 CST 2021


Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 programs/winedbg/debugger.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/programs/winedbg/debugger.h b/programs/winedbg/debugger.h
index 506a7d1797b..837384c21a8 100644
--- a/programs/winedbg/debugger.h
+++ b/programs/winedbg/debugger.h
@@ -254,7 +254,7 @@ extern  HANDLE                  dbg_houtput;
 
 struct dbg_internal_var
 {
-    DWORD_PTR		        val;
+    DWORD                       val;
     const char*                 name;
     void*                       pval;
     ULONG                       typeid; /* always internal type */




More information about the wine-devel mailing list