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

Dmitry Timoshkov dmitry at codeweavers.com
Mon Feb 5 00:20:23 CST 2007


Hello,

for me dbghelp prints continues FIXMEs about a "constant __FUCTION__", this
makes winedbg output completely unreadable.

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

---
 dlls/dbghelp/dwarf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c
index e8f9d3e..6ff33f2 100644
--- a/dlls/dbghelp/dwarf.c
+++ b/dlls/dbghelp/dwarf.c
@@ -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)
         {
-- 
1.4.4.4






More information about the wine-patches mailing list