From 453b5855aa805e123e3a1c492b8de4390d873c52 Mon Sep 17 00:00:00 2001
From: Theo Buehler <tb@openbsd.org>
Date: Tue, 19 Dec 2023 20:18:29 +0100
Subject: pthread_once() returns an error code on failure

---
 include/compat/pthread.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'include')

diff --git a/include/compat/pthread.h b/include/compat/pthread.h
index ed1b9dc..8211dda 100644
--- a/include/compat/pthread.h
+++ b/include/compat/pthread.h
@@ -48,7 +48,7 @@ pthread_once(pthread_once_t *once, void (*cb) (void))
 	struct _pthread_win32_cb_arg arg = { .cb = cb };
 	BOOL rc = InitOnceExecuteOnce(&once->once, _pthread_once_win32_cb, &arg, NULL);
 	if (rc == 0)
-		return -1;
+		return EINVAL;
 	else
 		return 0;
 }
-- 
cgit v1.2.3-55-g6feb