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

dbghelp: Fix typos in codeview_is_type_forward().

parent 8ef4a311
......@@ -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;
}
......
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