Skip to content

Commit

Permalink
fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Oct 28, 2014
1 parent b3ff2cd commit 75cff03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jltypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ jl_tuple_t *jl_compute_type_union(jl_tuple_t *types)
}
}
jl_tuple_t *result = jl_alloc_tuple_uninit(n - ndel);
temp[n] = result; // root result tuple while sorting
temp[n] = (jl_value_t*)result; // root result tuple while sorting
j=0;
for(i=0; i < n; i++) {
if (temp[i] != NULL) {
Expand Down

0 comments on commit 75cff03

Please sign in to comment.