Skip to content

Commit 938ddee

Browse files
committed
auto merge of #5929 : intgr/rust/sketch_output, r=thestinger
The last line of any command output should always have a newline. Also fixed typo, "on on" summary of 25 test runs: 4563 passed; 0 failed; 344 ignored
2 parents bd75463 + 5dda8ab commit 938ddee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rt/rust_exchange_alloc.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ rust_get_exchange_count_ptr() {
4848
void
4949
rust_check_exchange_count_on_exit() {
5050
if (exchange_count != 0) {
51-
printf("exchange heap not empty on on exit");
52-
printf("%d dangling allocations", (int)exchange_count);
51+
printf("exchange heap not empty on exit\n");
52+
printf("%d dangling allocations\n", (int)exchange_count);
5353
abort();
5454
}
5555
}

0 commit comments

Comments
 (0)