rt: Make debug string in rust_obstack slightly prettier

This commit is contained in:
Patrick Walton 2011-09-01 11:45:20 -07:00
parent 83ac32e8aa
commit bbac2dd768

View File

@ -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);