diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-01-19 15:23:00 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-01-19 15:23:00 +0100 |
| commit | 7bef77248822262e1f36609c153d477c89fa9ebd (patch) | |
| tree | a714f40622fec49f36cd11b4f9edc989e33bb28f /src | |
| parent | e4c64073c5b433d8a59f1a456518a45037a414dc (diff) | |
| download | box64-7bef77248822262e1f36609c153d477c89fa9ebd.tar.gz box64-7bef77248822262e1f36609c153d477c89fa9ebd.zip | |
Fix build on some older compiler
Diffstat (limited to 'src')
| -rw-r--r-- | src/wrapped/wrappedlibc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index 583f9b2e..ffb85cc8 100644 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -3375,7 +3375,7 @@ extern int box64_quit; extern int box64_exit_code; void endBox64(); #if !defined(ANDROID) -static void* timed_exit_thread(void*) +static void* timed_exit_thread(void* a) { // this is a workaround for some NVidia drivers on ARM64 that may freeze at exit // waiting on a pthread_cond_destroy |