Skip to content

Commit 7d7bfe6

Browse files
committed
Fix function signature mismatch
Note: this commit is no longer needed once PR #15604 lands.
1 parent 7c966c2 commit 7d7bfe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/lib/pthread/pthread_join.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <pthread.h>
1111

1212
extern int __pthread_join_js(pthread_t t, void **res, int tryjoin);
13-
extern int __emscripten_thread_cleanup(pthread_t t);
13+
extern void __emscripten_thread_cleanup(pthread_t t);
1414

1515
static int __pthread_join_internal(pthread_t t, void **res) {
1616
if (t->self != t) {

0 commit comments

Comments
 (0)