dbghelp: Fix typos in codeview_is_type_forward().

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
This commit is contained in:
Eric Pouech 2022-11-22 18:05:06 +01:00 committed by Alexandre Julliard
parent 8ef4a31116
commit fbf2301177

View file

@ -703,8 +703,8 @@ static BOOL codeview_type_is_forward(const union codeview_type* cvtype)
case LF_UNION_V2: property = cvtype->union_v2.property; break;
case LF_UNION_V3: property = cvtype->union_v3.property; break;
case LF_ENUM_V1: property = cvtype->enumeration_v1.property; break;
case LF_ENUM_V2: property = cvtype->enumeration_v1.property; break;
case LF_ENUM_V3: property = cvtype->enumeration_v1.property; break;
case LF_ENUM_V2: property = cvtype->enumeration_v2.property; break;
case LF_ENUM_V3: property = cvtype->enumeration_v3.property; break;
default:
return FALSE;
}