diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-08-10 12:06:43 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-08-10 12:06:43 +0200 |
| commit | 4e8f387f799694056031749de36d26fb65169efd (patch) | |
| tree | 2aa067bc9601f42201ce8f036d97ed6a79cbf9e2 /src/wrapped/wrappedlibc.c | |
| parent | 305e6326a6508b263c6886ce67e503b15d4c3fe9 (diff) | |
| download | box64-4e8f387f799694056031749de36d26fb65169efd.tar.gz box64-4e8f387f799694056031749de36d26fb65169efd.zip | |
Small changes in libc and libpthread wrapped lib
Diffstat (limited to 'src/wrapped/wrappedlibc.c')
| -rwxr-xr-x | 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 98da2cda..f668b58b 100755 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -2020,7 +2020,7 @@ EXPORT void* my_mmap64(x64emu_t* emu, void *addr, unsigned long length, int prot addr = find32bitBlock(length); else addr = findBlockNearHint(addr, length); - } else /*if (box64_wine)*/ { + } else if (box64_wine) { if(!addr) addr = find47bitBlock(length); } |