From 409ae9e40bc534e2dd43a04c2b8154b48fdce898 Mon Sep 17 00:00:00 2001 From: Richard Barnes Date: Fri, 19 Jul 2024 10:46:10 -0700 Subject: [PATCH] Update helper_thread.c --- helper_thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper_thread.c b/helper_thread.c index 279a3f6dda..2440604c12 100644 --- a/helper_thread.c +++ b/helper_thread.c @@ -110,7 +110,7 @@ static void block_signals(void) sigset_t sigmask; int ret; - (void)ret; // Suppress unused variable warning + (void)ret; /* Suppress unused variable warning */ ret = pthread_sigmask(SIG_UNBLOCK, NULL, &sigmask); assert(ret == 0);