From 7619475874e2d60a633e678f5d3e1cb6667ef93a Mon Sep 17 00:00:00 2001 From: Marcin Borowicz Date: Thu, 25 Mar 2021 23:05:36 +0100 Subject: [PATCH] fix pthread_sigmask 3 arg type --- portable/ThirdParty/GCC/Posix/port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portable/ThirdParty/GCC/Posix/port.c b/portable/ThirdParty/GCC/Posix/port.c index 05d89ff14..012e8b0a7 100644 --- a/portable/ThirdParty/GCC/Posix/port.c +++ b/portable/ThirdParty/GCC/Posix/port.c @@ -525,7 +525,7 @@ int iRet; * will be unblocked. */ (void)pthread_sigmask( SIG_SETMASK, &xAllSignals, - *&xSchedulerOriginalSignalMask ); + &xSchedulerOriginalSignalMask ); /* SIG_RESUME is only used with sigwait() so doesn't need a handler. */