Skip to content

Commit

Permalink
fix typo in JL_GC_PUSH usage
Browse files Browse the repository at this point in the history
introduced by 9018501
  • Loading branch information
vtjnash committed Jun 20, 2018
1 parent 43f66e2 commit 79da2f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gf.c
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ static void jl_compilation_sig(
if (jl_nparams(tt) >= nspec && jl_va_tuple_kind((jl_datatype_t*)definition->sig) == JL_VARARG_UNBOUND) {
jl_svec_t *limited = jl_alloc_svec(nspec);
jl_value_t *temp = NULL;
JL_GC_PUSH2(&limited, temp);
JL_GC_PUSH2(&limited, &temp);
if (!*newparams) *newparams = tt->parameters;
size_t i;
for (i = 0; i < nspec - 1; i++) {
Expand Down

0 comments on commit 79da2f7

Please sign in to comment.