mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 10:34:19 +00:00
Merge pull request #968 from antonio-nino-diaz-arm/an/snprintf-alt
mbedtls: Don't use tf_snprintf if option not defined
This commit is contained in:
commit
b91926fd50
1 changed files with 3 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
|||
/* mbed TLS headers */
|
||||
#include <mbedtls/memory_buffer_alloc.h>
|
||||
#include <mbedtls/platform.h>
|
||||
#include <mbedtls_config.h>
|
||||
|
||||
/*
|
||||
* mbed TLS heap
|
||||
|
@ -31,8 +32,10 @@ void mbedtls_init(void)
|
|||
/* Initialize the mbed TLS heap */
|
||||
mbedtls_memory_buffer_alloc_init(heap, MBEDTLS_HEAP_SIZE);
|
||||
|
||||
#ifdef MBEDTLS_PLATFORM_SNPRINTF_ALT
|
||||
/* Use reduced version of snprintf to save space. */
|
||||
mbedtls_platform_set_snprintf(tf_snprintf);
|
||||
#endif
|
||||
|
||||
ready = 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue