Skip to content

Commit

Permalink
Fix a C compiler warning (JuliaLang#39643)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Feb 14, 2021
1 parent 3d95d47 commit 28cf8ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interpreter.c
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ static jl_value_t *eval_value(jl_value_t *e, interpreter_state *s)
argv[i] = eval_value(args[i], s);
JL_NARGSV(new_opaque_closure, 5);
jl_value_t *ret = (jl_value_t*)jl_new_opaque_closure((jl_tupletype_t*)argv[0], argv[1], argv[2],
argv[3], (jl_method_t*)argv[4], argv+5, nargs-5);
argv[3], argv[4], argv+5, nargs-5);
JL_GC_POP();
return ret;
}
Expand Down

0 comments on commit 28cf8ce

Please sign in to comment.