mirror of
https://github.com/monero-project/monero.git
synced 2026-01-15 22:32:40 -08:00
lmdb: fix size_t size issues on 32 bit
This commit is contained in:
@@ -36,9 +36,9 @@ namespace lmdb
|
||||
{
|
||||
namespace stream
|
||||
{
|
||||
std::size_t count(MDB_cursor* cur)
|
||||
mdb_size_t count(MDB_cursor* cur)
|
||||
{
|
||||
std::size_t out = 0;
|
||||
mdb_size_t out = 0;
|
||||
if (cur)
|
||||
{
|
||||
const int rc = mdb_cursor_count(cur, &out);
|
||||
|
||||
Reference in New Issue
Block a user