diff options
Diffstat (limited to 'xmake/plugins/project/vsxmake/render.lua')
| -rw-r--r-- | xmake/plugins/project/vsxmake/render.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/project/vsxmake/render.lua b/xmake/plugins/project/vsxmake/render.lua index 99be35197..d599f1dde 100644 --- a/xmake/plugins/project/vsxmake/render.lua +++ b/xmake/plugins/project/vsxmake/render.lua @@ -18,7 +18,7 @@ -- @file render.lua -- -function _fill(opt, parmas) +function _fill(opt, params) return function(match) local imp = match:match("^Import%((.+)%)$") if imp then @@ -28,7 +28,7 @@ function _fill(opt, parmas) local args = path.filename(func):match("%((.+)%)$"):split(",") return _render(func, opt, args) end - return opt.paramsprovider(match, parmas) or "<Not Provided>" + return opt.paramsprovider(match, params) or "<Not Provided>" end end |
