From 9b5d1b4261c47b7b99ed5e3600b69408421a09da Mon Sep 17 00:00:00 2001 From: Alfred Gedeon Date: Mon, 4 Jan 2021 13:46:10 -0800 Subject: [PATCH] Fix Posix build error --- 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 05d89ff14c..012e8b0a7d 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. */