From e25dc1ccdcdf1b3f9b7c4727736c23f47ff48e2d Mon Sep 17 00:00:00 2001 From: Artur Allmann Date: Mon, 21 Mar 2022 16:11:35 +0200 Subject: [PATCH] Fix typo "phtreads" to "pthreads" Closes issue #5349 Signed-off-by: Artur Allmann --- library/threading.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/threading.c b/library/threading.c index 2de117f52..5e0aaa4f2 100644 --- a/library/threading.c +++ b/library/threading.c @@ -113,7 +113,7 @@ int (*mbedtls_mutex_lock)( mbedtls_threading_mutex_t * ) = threading_mutex_lock_ int (*mbedtls_mutex_unlock)( mbedtls_threading_mutex_t * ) = threading_mutex_unlock_pthread; /* - * With phtreads we can statically initialize mutexes + * With pthreads we can statically initialize mutexes */ #define MUTEX_INIT = { PTHREAD_MUTEX_INITIALIZER, 1 }