mirror of
https://github.com/isar/libmdbx.git
synced 2024-10-30 11:29:19 +08:00
mdbx: fix major typo in prev commit.
More for https://github.com/leo-yuriev/libmdbx/issues/76 Change-Id: I9a3d1adf1467a542b36330978d53cc15f4afbbdb
This commit is contained in:
parent
bf28856ac5
commit
b77f4faadd
@ -17424,7 +17424,7 @@ static __inline int clz64(uint64_t value) {
|
|||||||
uint64_t mdbx_key_from_jsonInteger(const int64_t json_integer) {
|
uint64_t mdbx_key_from_jsonInteger(const int64_t json_integer) {
|
||||||
const uint64_t biased_zero = UINT64_C(0x8000000000000000);
|
const uint64_t biased_zero = UINT64_C(0x8000000000000000);
|
||||||
if (json_integer > 0) {
|
if (json_integer > 0) {
|
||||||
if (unlikely(json_integer < JSON_MAX_SAFE_INTEGER))
|
if (unlikely(json_integer > JSON_MAX_SAFE_INTEGER))
|
||||||
goto fallback;
|
goto fallback;
|
||||||
const uint64_t u64 = json_integer;
|
const uint64_t u64 = json_integer;
|
||||||
const int extra_zeros =
|
const int extra_zeros =
|
||||||
|
Loading…
Reference in New Issue
Block a user