Skip to content

Commit

Permalink
Remove warning on 32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
timholy committed Oct 16, 2022
1 parent e17e117 commit 4b17542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/staticdata.c
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ static uintptr_t _backref_id(jl_serializer_state *s, jl_value_t *v, jl_array_t *
if (!item) {
// If we got here, we failed to find the expected external linkage. Print debugging info.
for (size_t i = 0; i < jl_linkage_blobs.len; i+=2) {
jl_printf(JL_STDOUT, "i = %ld: %p to %p\n", i>>1, jl_linkage_blobs.items[i], jl_linkage_blobs.items[i+1]);
jl_printf(JL_STDOUT, "i = %zu: %p to %p\n", i>>1, jl_linkage_blobs.items[i], jl_linkage_blobs.items[i+1]);
}
jl_printf(JL_STDOUT, "Object pointer %p for ", v);
jl_(v);
Expand Down

0 comments on commit 4b17542

Please sign in to comment.