Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
felipensp committed Dec 24, 2024
1 parent 61097a0 commit 5c08dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/v/gen/c/spawn_and_go.v
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn (mut g Gen) spawn_and_go_expr(node ast.SpawnExpr, mode SpawnGoMode) {
mut handle := ''
tmp := g.new_tmp_var()
mut expr := node.call_expr
mut name := expr.name
mut name := '${expr.name}_${expr.pos.pos}'
mut use_tmp_fn_var := false
tmp_fn := g.new_tmp_var()

Expand Down

0 comments on commit 5c08dc1

Please sign in to comment.