summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpportunityLiu <[email protected]>2019-06-19 11:53:08 +0800
committerOpportunityLiu <[email protected]>2019-06-19 11:53:08 +0800
commit5e9301d37938e2c8e4b277498309fa3bacf80252 (patch)
tree3c54447312114575d2dd4a59cfca502745bf66ec
parent13bcf540fa88260647c6f85d92e6462d9e9140ba (diff)
fix
-rw-r--r--xmake/core/sandbox/modules/import/core/sandbox/sandbox.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/sandbox/modules/import/core/sandbox/sandbox.lua b/xmake/core/sandbox/modules/import/core/sandbox/sandbox.lua
index 6a60e4c23..cdc0c9b4c 100644
--- a/xmake/core/sandbox/modules/import/core/sandbox/sandbox.lua
+++ b/xmake/core/sandbox/modules/import/core/sandbox/sandbox.lua
@@ -38,7 +38,7 @@ function sandbox_core_sandbox._interactive_dump(v0, ...)
dump(v0, "< ")
io.write("\n")
else
- for i, v in ipairs({...}) do
+ for i, v in ipairs(values) do
dump(v, "<" .. (i<10 and (i .. " ") or (i .. " ")))
io.write("\n")
end