Fixed spaces in memory_buffer_alloc.c

This commit is contained in:
Paul Bakker 2013-07-03 15:33:47 +02:00
parent fa9b10050b
commit 41350a9a7e

View file

@ -375,7 +375,10 @@ int memory_buffer_alloc_verify()
#if defined(POLARSSL_MEMORY_DEBUG) #if defined(POLARSSL_MEMORY_DEBUG)
void memory_buffer_alloc_status() void memory_buffer_alloc_status()
{ {
fprintf(stderr, "Current use: %u blocks / %u bytes, max: %u bytes, malloc / free: %u / %u\n", heap.header_count, heap.total_used, heap.maximum_used, heap.malloc_count, heap.free_count); fprintf( stderr,
"Current use: %u blocks / %u bytes, max: %u bytes, malloc / free: %u / %u\n",
heap.header_count, heap.total_used, heap.maximum_used,
heap.malloc_count, heap.free_count );
if( heap.first->next == NULL ) if( heap.first->next == NULL )
fprintf( stderr, "All memory de-allocated in stack buffer\n" ); fprintf( stderr, "All memory de-allocated in stack buffer\n" );