Skip to content
Snippets Groups Projects
Commit 265aa7b9 authored by Aleksey Demakov's avatar Aleksey Demakov
Browse files

Fix printing empty tuples (lua transform may produce such beasts).

parent 3de59928
No related branches found
No related tags found
No related merge requests found
......@@ -138,6 +138,11 @@ print_field(struct tbuf *buf, void *f)
void
tuple_print(struct tbuf *buf, uint8_t field_count, void *f)
{
if (field_count == 0) {
tbuf_printf(buf, "'': {}");
return;
}
print_field(buf, f);
tbuf_printf(buf, ": {");
f = next_field(f);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment