diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-24 22:35:06 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-31 11:12:21 +0000 |
commit | 5e1a3e48ba426eace417890727382d4a0196ab0e (patch) | |
tree | 69b15b5b0971c2ffed357a066ba3bceb28c8d3a1 /src/lmdb/database.cpp | |
parent | Merge pull request #5286 (diff) | |
download | monero-5e1a3e48ba426eace417890727382d4a0196ab0e.tar.xz |
lmdb: fix size_t size issues on 32 bit
Diffstat (limited to 'src/lmdb/database.cpp')
-rw-r--r-- | src/lmdb/database.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lmdb/database.cpp b/src/lmdb/database.cpp index c6b244671..ccab1902a 100644 --- a/src/lmdb/database.cpp +++ b/src/lmdb/database.cpp @@ -46,7 +46,7 @@ namespace lmdb { namespace { - constexpr const std::size_t max_resize = 1 * 1024 * 1024 * 1024; // 1 GB + constexpr const mdb_size_t max_resize = 1 * 1024 * 1024 * 1024; // 1 GB void acquire_context(context& ctx) noexcept { while (ctx.lock.test_and_set()); @@ -136,7 +136,7 @@ namespace lmdb MDB_envinfo info{}; MONERO_LMDB_CHECK(mdb_env_info(handle(), &info)); - const std::size_t resize = std::min(info.me_mapsize, max_resize); + const mdb_size_t resize = std::min(info.me_mapsize, max_resize); const int err = mdb_env_set_mapsize(handle(), info.me_mapsize + resize); ctx.lock.clear(); if (err) |