aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/human/io.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/human/io.lua b/util/human/io.lua
index b2318c0f..bfbabafb 100644
--- a/util/human/io.lua
+++ b/util/human/io.lua
@@ -162,7 +162,7 @@ local function new_table(col_specs, max_width)
local width = widths[i];
local v = row[not titles and column.key or i];
if not titles and column.mapper then
- v = column.mapper(v, row, width);
+ v = column.mapper(v, row, width, column);
end
if v == nil then
v = column.default or "";