From 89bac537165bf262594cca343cb45e16a2167145 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Mon, 6 Jan 2025 01:05:21 +0200 Subject: implement move checking further + Enough that examples still compile, but missing references etc. --- src/debug.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/debug.c') diff --git a/src/debug.c b/src/debug.c index f72fe9b..e65919b 100644 --- a/src/debug.c +++ b/src/debug.c @@ -154,6 +154,9 @@ static void _type_str(FILE *f, struct type *t); static void _type_list_str(FILE *f, struct type *types) { + if (!types) + return; + _type_str(f, types); foreach_type(type, types->n) { -- cgit v1.2.3