Skip to content

Commit

Permalink
fixup! move incremental into the serializer state
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed Oct 6, 2022
1 parent c821b66 commit ba5b2b2
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 @@ -2042,7 +2042,7 @@ static void jl_save_system_image_to_stream(ios_t *f, jl_array_t *worklist) JL_GC
ios_mem(&fptr_record, 100000);
serializer_worklist = worklist; // NULL means "serialize everything"
jl_serializer_state s;
s.incremental = (worklist == NULL);
s.incremental = !(worklist == NULL);
s.s = &sysimg;
s.const_data = &const_data;
s.symbols = &symbols;
Expand Down

0 comments on commit ba5b2b2

Please sign in to comment.