Skip to content

Commit

Permalink
Merge pull request #612 from pallene-lang/multiretpointer
Browse files Browse the repository at this point in the history
Tiny spacing change on multi-return vars
  • Loading branch information
hugomg authored Jul 9, 2024
2 parents 89851b6 + 44db7e3 commit 065aa4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pallene/coder.lua
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ function Coder:pallene_entry_point_declaration(f_id)
for i = 2, #ret_types do
local typ = ret_types[i]
local name = self:c_ret_var(i)
table.insert(args, {ctype(typ).."*", name, ""})
table.insert(args, {ctype(typ).." *", name, ""})
end

local arg_lines = {}
Expand Down

0 comments on commit 065aa4c

Please sign in to comment.