mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
Fix a missed ty_none
This commit is contained in:
parent
fe796eee68
commit
7e76a96f7d
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ next_type (qfot_type_t *type)
|
|||
int
|
||||
check_alias (qfot_type_t *alias)
|
||||
{
|
||||
if (alias.meta != ty_none && alias.t.type != ev_pointer) {
|
||||
if (alias.meta != ty_basic && alias.t.type != ev_pointer) {
|
||||
printf ("%s is not a *int alias\n", alias.t.alias.name);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue