diff options
| author | bors <bors@rust-lang.org> | 2013-04-18 05:21:55 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-04-18 05:21:55 -0700 |
| commit | 938ddeeed672078a63f620d1408370539d49b2bf (patch) | |
| tree | 3dc210a039af3e9a307ff20aadd85ac63ce0b4d5 /src/rt/rust_exchange_alloc.cpp | |
| parent | bd75463839f0b52283b0806166c19eb0ffa75732 (diff) | |
| parent | 5dda8ab12999d6f434a6d5f3746b48b757acb7b7 (diff) | |
| download | rust-938ddeeed672078a63f620d1408370539d49b2bf.tar.gz rust-938ddeeed672078a63f620d1408370539d49b2bf.zip | |
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
Diffstat (limited to 'src/rt/rust_exchange_alloc.cpp')
| -rw-r--r-- | src/rt/rust_exchange_alloc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_exchange_alloc.cpp b/src/rt/rust_exchange_alloc.cpp index a92bc4edd41..5958c68f3e7 100644 --- a/src/rt/rust_exchange_alloc.cpp +++ b/src/rt/rust_exchange_alloc.cpp @@ -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(); } } |
