[PATCH 05/13] dbghelp: fix dwarf constants

Eric Pouech eric.pouech at gmail.com
Thu Sep 2 04:22:19 CDT 2021


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>

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