Fix typo in mbedtls_freertos_port.c

This commit is contained in:
Paul Bartell
2022-10-19 11:33:16 -07:00
committed by Paul Bartell
parent fb11284c77
commit 8eef4be870

View File

@@ -28,6 +28,8 @@
#include <stdlib.h>
#include <string.h>
#include "FreeRTOSConfig.h"
/* FreeRTOS includes. */
#include "FreeRTOS.h"
#include "semphr.h"
@@ -111,7 +113,7 @@ static void mbedtls_platform_mutex_init( mbedtls_threading_mutex_t * pMutex )
* storage is provided. */
pMutex->mutexHandle = xSemaphoreCreateMutexStatic( &( pMutex->mutexStorage ) );
#elif( configSUPPORT_DYNAMIC ALLOCATION == 1 )
#elif( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
pMutex->mutexHandle = xSemaphoreCreateMutex();
#endif