From 3f396152b7b6032d83fbf39ef0a72db1043d344a 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 bae6644f68..cd9942bf6c 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 }