From 40e332fdbde4cc082ba9d0e4f5e8c53612bfec68 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 16:00:54 -0400 Subject: Fix empty tables --- src/compile/expressions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile/expressions.c b/src/compile/expressions.c index c511bea1..e9906253 100644 --- a/src/compile/expressions.c +++ b/src/compile/expressions.c @@ -42,7 +42,7 @@ Text_t compile_empty(type_t *t) { case ByteType: return Text("((Byte_t)0)"); case BoolType: return Text("((Bool_t)no)"); case ListType: return Text("((List_t){})"); - case TableType: + case TableType: return Text("((Table_t){})"); case TextType: return Text("Text(\"\")"); case CStringType: return Text("\"\""); case PointerType: { -- cgit v1.2.3