Skip to content

Commit

Permalink
Fix the formatting for gc_time_summary.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christine H. Flood committed Mar 31, 2022
1 parent b82679a commit 7f2d8f7
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("%llu: Major collection: estimate freed = %llu bytes"
" live = %llu bytes new interval = %llu bytes time = %llu ms\n",
jl_safe_printf("%" PRIu64 ": Major collection: estimate freed = %" PRIu64 " bytes"
" live = %" PRIu64 " bytes new interval = %" PRIu64 " bytes time = %" PRIu64 " ms\n",
end - start, freed, live,
interval, pause);
else
jl_safe_printf("%llu: Minor Colletion: estimate freed = %llu bytes"
" live = %llu bytes interval = %llu bytes time = %llu ms \n",
jl_safe_printf("%" PRIu64 ": Minor Colletion: estimate freed = %" PRIu64 " bytes"
" live = %" PRIu64 " bytes interval = %" PRIu64 " bytes time = %" PRIu64 " ms \n",
end - start, freed, live,
interval, pause);
}
Expand Down

0 comments on commit 7f2d8f7

Please sign in to comment.