diff --git a/core/text/table/table.odin b/core/text/table/table.odin index d555c3fe8..91094d985 100644 --- a/core/text/table/table.odin +++ b/core/text/table/table.odin @@ -127,7 +127,7 @@ set_cell_alignment :: proc(tbl: ^Table, row, col: int, alignment: Cell_Alignment tbl.dirty = true } -format :: proc(tbl: ^Table, _fmt: string, args: ..any, loc := #caller_location) -> string { +format :: proc(tbl: ^Table, _fmt: string, args: ..any) -> string { context.allocator = tbl.format_allocator return fmt.aprintf(_fmt, ..args) }