Fix a type-o ;)

This commit is contained in:
Bill Currie 2011-02-08 13:26:49 +09:00
parent 8c6fc6fb03
commit 2594be8b1b

View file

@ -799,7 +799,7 @@ int
is_struct (type_t *type) is_struct (type_t *type)
{ {
if (type->type == ev_invalid if (type->type == ev_invalid
&& (type->ty == ty_struct || type->type == ty_union)) && (type->ty == ty_struct || type->ty == ty_union))
return 1; return 1;
return 0; return 0;
} }