From be30a0eb19a526f07ebab48856289d5bc0952c74 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 15 Feb 2020 16:08:21 +0900 Subject: [PATCH] Fix missing alignment init on zero and param types --- tools/qfcc/source/type.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/qfcc/source/type.c b/tools/qfcc/source/type.c index d326a5f33..981d2fbed 100644 --- a/tools/qfcc/source/type.c +++ b/tools/qfcc/source/type.c @@ -82,9 +82,9 @@ type_t *type_nil; type_t *type_default; // these will be built up further -type_t type_va_list = { ev_invalid, 0, ty_struct }; -type_t type_param = { ev_invalid, 0, ty_struct }; -type_t type_zero = { ev_invalid, 0, ty_struct }; +type_t type_va_list = { ev_invalid, 0, 0, ty_struct }; +type_t type_param = { ev_invalid, 0, 0, ty_struct }; +type_t type_zero = { ev_invalid, 0, 0, ty_struct }; type_t type_type_encodings = { ev_invalid, "@type_encodings", 0, ty_struct };