From 23f641850d2428eac3e164d6e735e6e92dc3914a Mon Sep 17 00:00:00 2001 From: Thomas Pedersen Date: Fri, 8 Jan 2021 14:19:15 -0800 Subject: [PATCH] Posix: fix build failure (#235) Fixes: a48f137896b9 ("Posix Port: Comment and remove unused variables (#230)") Authored-by: Thomas Pedersen --- 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. */