diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 16:00:54 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 16:00:54 -0400 |
| commit | 40e332fdbde4cc082ba9d0e4f5e8c53612bfec68 (patch) | |
| tree | 1ce4a03f646ffe284935ea7e679e5f7e56ea4e4a /src/compile | |
| parent | 4d5ebf7fc10214a14de02e6d758daff29c66fa2d (diff) | |
Fix empty tables
Diffstat (limited to 'src/compile')
| -rw-r--r-- | src/compile/expressions.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: { |
