Commit 50144e27 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

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: 's avatarEric Pouech <eric.pouech@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 1a2d1e1a
......@@ -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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment