From 578f3f776dbdf827fa70298399fac3dc4fdee7a2 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Sat, 16 Jul 2016 15:59:28 +0200 Subject: [PATCH] [luacheck] fix (W212) unused argument tr --- src/jit/dump.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit/dump.lua b/src/jit/dump.lua index 1eca12a8..4458f1cf 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua @@ -580,7 +580,7 @@ local function dump_trace(what, tr, func, pc, otr, oex) end -- Dump recorded bytecode. -local function dump_record(tr, func, pc, depth, callee) +local function dump_record(_, func, pc, depth, callee) if depth ~= recdepth then recdepth = depth recprefix = rep(" .", depth)