Commit bf68ec1f authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Silence a couple of FIXMEs in SymGetTypeInfo().

parent 177046a1
......@@ -945,7 +945,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
X(ULONG) = ((const struct symt_data*)type)->u.member.offset;
break;
default:
FIXME("Unknown kind (%u) for get-offset\n",
WARN("Unsupported kind (%u) for get-offset\n",
((const struct symt_data*)type)->kind);
return FALSE;
}
......@@ -957,6 +957,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
case SymTagExe:
case SymTagCompiland:
case SymTagUDT:
case SymTagEnum:
case SymTagFunctionType:
case SymTagFunctionArgType:
case SymTagPointerType:
......
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