Eric Pouech : winedbg: Make savable variables size a DWORD.

Alexandre Julliard julliard at winehq.org
Tue Dec 7 15:58:45 CST 2021


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

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Tue Dec  7 18:45:27 2021 +0100

winedbg: Make savable variables size a DWORD.

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

---

 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-cvs mailing list