Simplify table code

This commit is contained in:
Bruce Hill 2024-02-24 14:36:35 -05:00
parent c9cd667450
commit 08d1a6b971

View File

@ -529,7 +529,7 @@ public CORD Table_as_str(const table_t *t, bool colorize, const TypeInfo *type)
}
if (t->default_value) {
c = CORD_cat(c, t->fallback ? "; default=" : "; default=");
c = CORD_cat(c, "; default=");
c = CORD_cat(c, generic_as_str(t->default_value, colorize, table.value));
}