Skip to content
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
4 changes: 2 additions & 2 deletions src/rt/rust_exchange_alloc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ rust_get_exchange_count_ptr() {
void
rust_check_exchange_count_on_exit() {
if (exchange_count != 0) {
printf("exchange heap not empty on on exit");
printf("%d dangling allocations", (int)exchange_count);
printf("exchange heap not empty on exit\n");
printf("%d dangling allocations\n", (int)exchange_count);
abort();
}
}