Skip to content

Commit bfbc3c8

Browse files
committed
Fix the macOS build
1 parent f6afcf4 commit bfbc3c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/c/macos.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ int launch(const LaunchFunc launch_runtime, const size_t argc, const char **argv
5959
pthread_attr_init(&attr);
6060
pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
6161
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
62-
pthread_create(&thread, &attr, startup_jvm_macos, NULL);
62+
pthread_create(&thread, &attr, launch_on_macos, NULL);
6363
pthread_attr_destroy(&attr);
6464

6565
// Run the AppKit event loop here on the main thread.

0 commit comments

Comments
 (0)