Skip to content

Commit

Permalink
Merge pull request orangeduck#30 from sjml/patch-1
Browse files Browse the repository at this point in the history
Fixing scope problem in lautoc.lua
  • Loading branch information
orangeduck authored Jul 8, 2019
2 parents d149464 + 88e4e66 commit 23e7269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lautoc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ for k,v in pairs(funcs) do

local fstring = string.format("luaA_function(%s, %s", name, typename)
for _, v in pairs(argtypes) do
local fstring = fstring .. string.format(", %s", v)
fstring = fstring .. string.format(", %s", v)
end
local fstring = fstring .. ");"

Expand Down

0 comments on commit 23e7269

Please sign in to comment.