Skip to content

Commit

Permalink
Fix formatting issue in print statement in gc-debug.c (#44944)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christine Flood authored Apr 12, 2022
1 parent 770b45d commit 255e18c
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 @@ -982,13 +982,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\n"
"live = %ldm new interval = %ldm time = %ldms\n",
jl_safe_printf("TS: %" PRIu64 " Major collection: estimate freed = %" PRIu64
" live = %" PRIu64 "m new interval = %" PRIu64 "m time = %" PRIu64 "ms\n",
end - start, freed, live/1024/1024,
interval/1024/1024, pause/1000000 );
else
jl_safe_printf("%ld Minor collection: estimate freed = %ld live = %ldm\n"
"new interval = %ldm time = %ldms\n",
jl_safe_printf("TS: %" PRIu64 " Minor collection: estimate freed = %" PRIu64 " live = %" PRIu64
"m new interval = %" PRIu64 "m time = %" PRIu64 "ms\n",
end - start, freed, live/1024/1024,
interval/1024/1024, pause/1000000 );
}
Expand Down

0 comments on commit 255e18c

Please sign in to comment.