mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
dbghelp: In SymGetTypeInfo(), return the correct basetype for enums.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0a16dbc730
commit
fdc48ba767
1 changed files with 1 additions and 2 deletions
|
@ -613,8 +613,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
|
|||
X(DWORD) = ((const struct symt_basic*)type)->bt;
|
||||
break;
|
||||
case SymTagEnum:
|
||||
X(DWORD) = btInt;
|
||||
break;
|
||||
return symt_get_info(module, ((const struct symt_enum*)type)->base_type, req, pInfo);
|
||||
default:
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue