mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Fix missing alignment init on zero and param types
This commit is contained in:
parent
3e651b43f8
commit
be30a0eb19
1 changed files with 3 additions and 3 deletions
|
@ -82,9 +82,9 @@ type_t *type_nil;
|
||||||
type_t *type_default;
|
type_t *type_default;
|
||||||
|
|
||||||
// these will be built up further
|
// these will be built up further
|
||||||
type_t type_va_list = { ev_invalid, 0, ty_struct };
|
type_t type_va_list = { ev_invalid, 0, 0, ty_struct };
|
||||||
type_t type_param = { ev_invalid, 0, ty_struct };
|
type_t type_param = { ev_invalid, 0, 0, ty_struct };
|
||||||
type_t type_zero = { ev_invalid, 0, ty_struct };
|
type_t type_zero = { ev_invalid, 0, 0, ty_struct };
|
||||||
type_t type_type_encodings = { ev_invalid, "@type_encodings", 0,
|
type_t type_type_encodings = { ev_invalid, "@type_encodings", 0,
|
||||||
ty_struct };
|
ty_struct };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue