Skip to content

Commit

Permalink
Fix a syntax error in gc-debug.c (JuliaLang#42702)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholters authored Oct 19, 2021
1 parent 50fcb03 commit e1d831b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gc-debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ static void gc_scrub_task(jl_task_t *ta)
else
return;

if (ptls == ptls2 && ptls2 && ta == jl_atomic_load_relaxed(&ptls2->current_task) {
if (ptls == ptls2 && ptls2 && ta == jl_atomic_load_relaxed(&ptls2->current_task)) {
// scan up to current `sp` for current thread and task
low = (char*)jl_get_frame_addr();
}
Expand Down

0 comments on commit e1d831b

Please sign in to comment.