From 4725a440985cecc4854f7a6dd0d1d2c921b7d0c0 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 1 May 2002 21:33:59 +0000 Subject: [PATCH] print out field types correctly --- tools/qfcc/source/type.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/qfcc/source/type.c b/tools/qfcc/source/type.c index ef1a0f73a..ee66e045e 100644 --- a/tools/qfcc/source/type.c +++ b/tools/qfcc/source/type.c @@ -99,6 +99,11 @@ print_type (type_t *type) return; } switch (type->type) { + case ev_field: + printf (" .("); + print_type (type->aux_type); + printf (")"); + break; case ev_func: print_type (type->aux_type); if (type->num_parms < 0) {