Skip to content

Commit

Permalink
fix cCall
Browse files Browse the repository at this point in the history
  • Loading branch information
metagn committed Dec 5, 2024
1 parent e595c24 commit 9a3673c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/cbuilderexprs.nim
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ proc cCall(callee: Snippet, args: varargs[Snippet]): Snippet =
if args.len != 0:
result.add(args[0])
for i in 1 ..< args.len:
result.add(", ")
result.add(cArgumentSeparator)
result.add(args[i])
result.add(")")

Expand Down

0 comments on commit 9a3673c

Please sign in to comment.