From 6f4c3233780421c15b91e02740af2800f2a96d84 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 25 Nov 2025 18:01:27 +0900 Subject: [PATCH] fix --- core/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/thread.c b/core/thread.c index 2022934..74df1e9 100644 --- a/core/thread.c +++ b/core/thread.c @@ -61,6 +61,6 @@ void MDEThreadDestroy(MDEThread thread) { void MDEThreadJoin(MDEThread thread) { void* p; - pthread_join(thread, &p); + pthread_join(*(pthread_t*)thread, &p); } #endif