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:
Eric Pouech 2021-09-02 11:22:19 +02:00 committed by Alexandre Julliard
parent 1a2d1e1a8a
commit 50144e2732

View file

@ -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
{