diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-10-08 10:40:09 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-10-08 10:40:09 +0200 |
| commit | 22ccae3301da5c0c6d799031739cf166d49a2c2f (patch) | |
| tree | ae0cb2a86fb9ef290c6d6fd12aa22d6018716c90 /src | |
| parent | 58d58b0af7113edb7623903535c436da5a1a6304 (diff) | |
| download | box64-22ccae3301da5c0c6d799031739cf166d49a2c2f.tar.gz box64-22ccae3301da5c0c6d799031739cf166d49a2c2f.zip | |
Small adjustment in 32bits custom memory hinter
Diffstat (limited to 'src')
| -rw-r--r-- | src/custommem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/custommem.c b/src/custommem.c index ee6a942e..efb17840 100644 --- a/src/custommem.c +++ b/src/custommem.c @@ -1651,7 +1651,7 @@ void* find32bitBlock(size_t size) if(ret) return ret; ret = find31bitBlockNearHint(LOWEST, size, 0); - return ret?ret:find47bitBlock(size); + return ret; } void* find47bitBlock(size_t size) { |