Skip to content

Commit

Permalink
Fix more warnings introduced by recent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Mar 10, 2022
1 parent 17da41c commit a4b2fcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gc-debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -983,13 +983,13 @@ void gc_time_summary(int sweep_full, uint64_t start, uint64_t end,
uint64_t pause)
{
if (sweep_full > 0)
jl_safe_printf("%ld Major collection: estimate freed = %ld
live = %ldm new interval = %ldm time = %ldms\n",
jl_safe_printf("%ld Major collection: estimate freed = %ld\n"
"live = %ldm new interval = %ldm time = %ldms\n",
end - start, freed, live/1024/1024,
interval/1024/1024, pause/1000000 );
else
jl_safe_printf("%ld Minor collection: estimate freed = %ld live = %ldm
new interval = %ldm time = %ldms\n",
jl_safe_printf("%ld Minor collection: estimate freed = %ld live = %ldm\n"
"new interval = %ldm time = %ldms\n",
end - start, freed, live/1024/1024,
interval/1024/1024, pause/1000000 );
}
Expand Down

0 comments on commit a4b2fcf

Please sign in to comment.