aboutsummaryrefslogtreecommitdiff
path: root/src/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug.c')
-rw-r--r--src/debug.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/debug.c b/src/debug.c
index f823442..ecb03e3 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -168,10 +168,12 @@ static void _type_str(FILE *f, struct type *type)
case TYPE_PTR:
fprintf(f, "*");
+ _type_list_str(f, tptr_base(type));
break;
case TYPE_REF:
fprintf(f, "&");
+ _type_list_str(f, tref_base(type));
break;
case TYPE_ID: