Commit a38cd7ac authored by Andrey Turkin's avatar Andrey Turkin Committed by Alexandre Julliard

dbghelp: Treat const addresses as const unsigned.

This will prevent winedbg from spamming about __wine_dbch__default.
parent da93bc70
......@@ -1329,6 +1329,7 @@ static void dwarf2_parse_variable(dwarf2_subprogram_t* subpgm,
case DW_FORM_data2:
case DW_FORM_data4:
case DW_FORM_udata:
case DW_FORM_addr:
v.n1.n2.vt = VT_UI4;
v.n1.n2.n3.lVal = value.u.uvalue;
break;
......
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