Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For the dprintf output of the median overhead figure, the type of the… #86886

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/coreclr/gc/gc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24976,7 +24976,7 @@ void gc_heap::check_heap_count ()

// the middle element is the median overhead percentage
float median_percent_overhead = percent_overhead[1];
dprintf (6666, ("median overhead: %d%%", median_percent_overhead));
dprintf (6666, ("median overhead: %d%%", (int)median_percent_overhead));

// estimate the space cost of adding a heap as the min gen0 size
size_t heap_space_cost_per_heap = dd_min_size (hp0_dd0);
Expand Down