diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2011-09-01 11:45:20 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2011-09-01 11:47:58 -0700 |
| commit | bbac2dd7687608f1865539e2be92201d127b43a8 (patch) | |
| tree | 9763d9da0a04cd302b62c1c1842e90d47214271f /src/rt/rust_obstack.cpp | |
| parent | 83ac32e8aaf10ff2257fea7c7d21c9602c1bb29e (diff) | |
| download | rust-bbac2dd7687608f1865539e2be92201d127b43a8.tar.gz rust-bbac2dd7687608f1865539e2be92201d127b43a8.zip | |
rt: Make debug string in rust_obstack slightly prettier
Diffstat (limited to 'src/rt/rust_obstack.cpp')
| -rw-r--r-- | src/rt/rust_obstack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_obstack.cpp b/src/rt/rust_obstack.cpp index 4f30eb78f80..46fca601ca9 100644 --- a/src/rt/rust_obstack.cpp +++ b/src/rt/rust_obstack.cpp @@ -102,7 +102,7 @@ rust_obstack::alloc(size_t len, type_desc *tydesc) { if (!chunk) return alloc_new(len, tydesc); - DPRINT("alloc sz %u", (uint32_t)len); + DPRINT("alloc sz %u\n", (uint32_t)len); void *ptr = chunk->alloc(len, tydesc); ptr = ptr ? ptr : alloc_new(len, tydesc); |
