Module: wine Branch: master Commit: 4bf83f21ca8407feb854a5fc105a5311e5144cb5 URL: https://source.winehq.org/git/wine.git/?a=commit;h=4bf83f21ca8407feb854a5fc1... Author: Eric Pouech <eric.pouech(a)gmail.com> Date: Wed Oct 6 10:00:59 2021 +0200 dbghelp: Silence FIXME when requesting SymTagExe lexical parent in SymGetTypeInfo(). Signed-off-by: Eric Pouech <eric.pouech(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/dbghelp/type.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/dbghelp/type.c b/dlls/dbghelp/type.c index ae601c0cda2..69b25bafef0 100644 --- a/dlls/dbghelp/type.c +++ b/dlls/dbghelp/type.c @@ -732,6 +732,8 @@ BOOL symt_get_info(struct module* module, const struct symt* type, default: FIXME("Unsupported sym-tag %s for get-lexical-parent\n", symt_get_tag_str(type->tag)); + /* fall through */ + case SymTagExe: return FALSE; } break;