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

Alexandre Julliard julliard at winehq.org
Tue Jul 12 16:45:37 CDT 2022


Module: wine
Branch: master
Commit: bf68ec1f8a6b9ba0735e84e57ef06cbcf796aebd
URL:    https://gitlab.winehq.org/wine/wine/-/commit/bf68ec1f8a6b9ba0735e84e57ef06cbcf796aebd

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Tue Jul 12 09:28:57 2022 +0200

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

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---

 dlls/dbghelp/type.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/dbghelp/type.c b/dlls/dbghelp/type.c
index 0cbbc4e333b..170104bef86 100644
--- a/dlls/dbghelp/type.c
+++ b/dlls/dbghelp/type.c
@@ -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:




More information about the wine-cvs mailing list