mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
Fix a type-o ;)
This commit is contained in:
parent
8c6fc6fb03
commit
2594be8b1b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue