aboutsummaryrefslogtreecommitdiff
path: root/src/debug.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-01-06 01:05:21 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-01-06 01:05:57 +0200
commit89bac537165bf262594cca343cb45e16a2167145 (patch)
treef72a80f1624b12fa3b27c6dc6feedc3e06594e20 /src/debug.c
parentaec19e55ca32f68536a550f100d3f058b8a93c02 (diff)
downloadfwd-mvcheck.tar.gz
fwd-mvcheck.zip
implement move checking furthermvcheck
+ Enough that examples still compile, but missing references etc.
Diffstat (limited to 'src/debug.c')
-rw-r--r--src/debug.c3
1 files changed, 3 insertions, 0 deletions
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) {