mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-26 10:05:24 +00:00
Fixed spaces in memory_buffer_alloc.c
This commit is contained in:
parent
fa9b10050b
commit
41350a9a7e
|
@ -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" );
|
||||||
|
|
Loading…
Reference in a new issue