diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-07-12 18:36:31 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-07-12 18:36:31 +0200 |
| commit | 0674e546e1743e2fd47c8477abe685de462f9744 (patch) | |
| tree | 7fd2891819a31b6c500a41c396f35a73821ad003 /src/libtools/threads.c | |
| parent | 2a10ddc75ba2bcf2915ff49ac88664ee8e7d1939 (diff) | |
| download | box64-0674e546e1743e2fd47c8477abe685de462f9744.tar.gz box64-0674e546e1743e2fd47c8477abe685de462f9744.zip | |
[ANDROID] This should fix the build
Diffstat (limited to 'src/libtools/threads.c')
| -rw-r--r-- | src/libtools/threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtools/threads.c b/src/libtools/threads.c index 40e7b956..3ba83ba0 100644 --- a/src/libtools/threads.c +++ b/src/libtools/threads.c @@ -932,7 +932,7 @@ EXPORT int my_pthread_mutexattr_setkind_np(x64emu_t* emu, my_mutexattr_t *attr, } EXPORT int my_pthread_mutexattr_setprioceiling(x64emu_t* emu, my_mutexattr_t *attr, int p) { -#ifndef TERMUX +#if !defined(TERMUX) && !defined(ANDROID) (void)emu; my_mutexattr_t mattr = {0}; mattr.x86 = attr->x86; |