From 5690fd028d9da6441d47ab229c7b84133fd1abf3 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 16 Feb 2025 18:07:11 +0900 Subject: [PATCH] [qfcc] Fix type_count for type aliases It was returning type_size by mistake (c&p programming ftw). --- tools/qfcc/source/type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/type.c b/tools/qfcc/source/type.c index d94c061d8..5a349b479 100644 --- a/tools/qfcc/source/type.c +++ b/tools/qfcc/source/type.c @@ -1995,7 +1995,7 @@ type_count (const type_t *type) case ty_class: return 1; case ty_alias: - return type_size (type->alias.aux_type); + return type_count (type->alias.aux_type); case ty_algebra: internal_error (0, "count of algebra type"); case ty_meta_count: