From dc69654d1bc1325626feff3094ecef82d2cc7b2f Mon Sep 17 00:00:00 2001 From: Alexander Argentakis <38327951+MFDGaming@users.noreply.github.com> Date: Thu, 20 Mar 2025 17:33:30 +0200 Subject: [PATCH] winpthreads: fix typo pthread_attr_setgaurdsize->pthread_attr_setguardsize MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- mingw-w64-libraries/winpthreads/include/pthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mingw-w64-libraries/winpthreads/include/pthread.h b/mingw-w64-libraries/winpthreads/include/pthread.h index 7b295ae7f..4a5822427 100644 --- a/mingw-w64-libraries/winpthreads/include/pthread.h +++ b/mingw-w64-libraries/winpthreads/include/pthread.h @@ -158,7 +158,7 @@ WINPTHREAD_API int pthread_set_num_processors_np(int n); #define pthread_mutex_setprioceiling(M, P) ENOTSUP #define pthread_getcpuclockid(T, C) ENOTSUP #define pthread_attr_getguardsize(A, S) ENOTSUP -#define pthread_attr_setgaurdsize(A, S) ENOTSUP +#define pthread_attr_setguardsize(A, S) ENOTSUP typedef long pthread_once_t; typedef unsigned pthread_mutexattr_t;