dbghelp: Turn a FIXME to a WARN in order to avoid mangling the output.

This commit is contained in:
Dmitry Timoshkov 2007-02-05 14:20:23 +08:00 committed by Alexandre Julliard
parent 6d62ef657d
commit 736743dd57
1 changed files with 1 additions and 1 deletions

View File

@ -1319,7 +1319,7 @@ static void dwarf2_parse_variable(dwarf2_subprogram_t* subpgm,
else if (dwarf2_find_attribute(subpgm->ctx, di, DW_AT_const_value, &value))
{
VARIANT v;
if (subpgm->func) FIXME("Unsupported constant %s in function\n", name.u.string);
if (subpgm->func) WARN("Unsupported constant %s in function\n", name.u.string);
if (is_pmt) FIXME("Unsupported constant (parameter) %s in function\n", name.u.string);
switch (value.form)
{