about summary refs log tree commit diff
path: root/src/rt/rust_obstack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_obstack.cpp')
-rw-r--r--src/rt/rust_obstack.cpp2
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);