Remove debug message

This commit is contained in:
Baptiste Wicht 2014-02-03 14:33:23 +01:00
parent c7f4bdffb3
commit 4c1a853f32

View File

@ -393,8 +393,6 @@ void* malloc::k_malloc(uint64_t bytes){
//Address of the start of the block //Address of the start of the block
auto block_start = reinterpret_cast<uintptr_t>(current) + sizeof(malloc_header_chunk); auto block_start = reinterpret_cast<uintptr_t>(current) + sizeof(malloc_header_chunk);
k_printf("%h\n", block_start);
if(TRACE_MALLOC){ if(TRACE_MALLOC){
k_printf("m %u(%u) %h ", bytes, current->size(), block_start); k_printf("m %u(%u) %h ", bytes, current->size(), block_start);
} }