diff options
| author | Marti Raudsepp <marti@juffo.org> | 2013-04-18 12:25:03 +0300 |
|---|---|---|
| committer | Marti Raudsepp <marti@juffo.org> | 2013-04-18 12:46:01 +0300 |
| commit | 5dda8ab12999d6f434a6d5f3746b48b757acb7b7 (patch) | |
| tree | 1781a23552740c45ee8047a171d1920212bbc053 /src/rt/rust_exchange_alloc.cpp | |
| parent | 3499a37b062d9e1e1edc3e127192ea9da7cfa1b1 (diff) | |
| download | rust-5dda8ab12999d6f434a6d5f3746b48b757acb7b7.tar.gz rust-5dda8ab12999d6f434a6d5f3746b48b757acb7b7.zip | |
sketch: Make rust sketch barf output prettier
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(); } } |
