From 53fd55143ef94a91d34727941181d576f522f2a9 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 27 Mar 2020 12:26:44 +0900 Subject: [PATCH] [qfcc] Fix missed none->basic rename --- tools/qfcc/source/obj_type.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/obj_type.c b/tools/qfcc/source/obj_type.c index d12c196dc..38a28a9e8 100644 --- a/tools/qfcc/source/obj_type.c +++ b/tools/qfcc/source/obj_type.c @@ -141,7 +141,7 @@ qfo_encode_fldptr (type_t *type) } static def_t * -qfo_encode_none (type_t *type) +qfo_encode_basic (type_t *type) { qfot_type_t *enc; def_t *def; @@ -260,7 +260,7 @@ qfo_encode_type (type_t *type) reloc_t *relocs = 0; static encode_f funcs[] = { - qfo_encode_none, // ty_none + qfo_encode_basic, // ty_basic qfo_encode_struct, // ty_struct qfo_encode_struct, // ty_union qfo_encode_struct, // ty_enum