aboutsummaryrefslogtreecommitdiff
path: root/src/debug.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-12-28 16:40:41 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2024-12-28 16:40:41 +0200
commitbf804fa1e18c717cec3944f5edea858a2f3a015d (patch)
treefa2a9c07f088fa2c1be97cb6e7d078b8eac7172f /src/debug.c
parent98c3d8fbc924c62e2be571ed71b22053b9e8baa3 (diff)
downloadfwd-bf804fa1e18c717cec3944f5edea858a2f3a015d.tar.gz
fwd-bf804fa1e18c717cec3944f5edea858a2f3a015d.zip
enough type checking for all examples to pass
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: