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@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1a2d1e1a8a
commit
50144e2732
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue