Eric Pouech : dbghelp: Fix dwarf constants.

Alexandre Julliard julliard at winehq.org
Fri Sep 3 16:25:28 CDT 2021


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

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Thu Sep  2 11:22:19 2021 +0200

dbghelp: Fix dwarf constants.

The 32bit CIE_ID is an unsigned integer (will become important when
handling 32 vs 64 bit values).

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

---

 dlls/dbghelp/dwarf.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dbghelp/dwarf.h b/dlls/dbghelp/dwarf.h
index 33ea9ef40ca..d4355d72e80 100644
--- a/dlls/dbghelp/dwarf.h
+++ b/dlls/dbghelp/dwarf.h
@@ -503,7 +503,7 @@ enum dwarf_calling_convention
 #define DW_LNE_lo_user                  0x80
 #define DW_LNE_hi_user                  0xff
 
-#define DW_CIE_ID                       ~(0x0)
+#define DW_CIE_ID                       ~(0x0U)
 
 enum dwarf_call_frame_info
 {




More information about the wine-cvs mailing list