Skip to content

Commit bbac2dd

Browse files
committed
rt: Make debug string in rust_obstack slightly prettier
1 parent 83ac32e commit bbac2dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rt/rust_obstack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ rust_obstack::alloc(size_t len, type_desc *tydesc) {
102102
if (!chunk)
103103
return alloc_new(len, tydesc);
104104

105-
DPRINT("alloc sz %u", (uint32_t)len);
105+
DPRINT("alloc sz %u\n", (uint32_t)len);
106106

107107
void *ptr = chunk->alloc(len, tydesc);
108108
ptr = ptr ? ptr : alloc_new(len, tydesc);

0 commit comments

Comments
 (0)