From d579ef1baeaf787411082faef0edc88302dc2c9d Mon Sep 17 00:00:00 2001 From: nakst <> Date: Wed, 2 Feb 2022 16:18:36 +0000 Subject: [PATCH] fix warning --- util/script.c | 1 + 1 file changed, 1 insertion(+) diff --git a/util/script.c b/util/script.c index 772918c..c3bc8e6 100644 --- a/util/script.c +++ b/util/script.c @@ -5363,6 +5363,7 @@ int ExternalSystemGetHostName(ExecutionContext *context, Value *returnValue) { } CoroutineState *ExternalCoroutineWaitAny(ExecutionContext *context) { + (void) context; while (sem_wait(&externalCoroutineSemaphore) == -1); pthread_mutex_lock(&externalCoroutineMutex); CoroutineState *unblocked = externalCoroutineUnblockedList;