diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-08-30 15:59:07 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-08-30 15:59:07 +0200 |
| commit | 7ecdced4860d12b8f484e0b222d08192be4a56eb (patch) | |
| tree | 99bc64ddda5255926398855eebf8ce248913296b /src/box32.c | |
| parent | 13b72df762476b13a6bc6e1cb1e7fa622068224d (diff) | |
| download | box64-7ecdced4860d12b8f484e0b222d08192be4a56eb.tar.gz box64-7ecdced4860d12b8f484e0b222d08192be4a56eb.zip | |
[BOX32] Added more 32bits wrapped function and fixes
Diffstat (limited to 'src/box32.c')
| -rw-r--r-- | src/box32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/box32.c b/src/box32.c index 9add2a61..00b08e1a 100644 --- a/src/box32.c +++ b/src/box32.c @@ -135,7 +135,7 @@ ulong_t to_hash_d(uintptr_t p) { } else { ret = kh_value(hash_to, k); // delete both entries - k = kh_get(to, hash_to, p); + //k = kh_get(to, hash_to, p); kh_del(to, hash_to, k); k = kh_get(from, hash_from, ret); kh_del(from, hash_from, k); |