From 211c1b4838d7f9e978c2d0520a72196ea0f0e5fc Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Thu, 3 Sep 2020 23:20:25 +0200 Subject: [PATCH] fixing i386 build --- contrib/db/liblmdb/mdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/db/liblmdb/mdb.c b/contrib/db/liblmdb/mdb.c index ca9f3b12..f9b48233 100644 --- a/contrib/db/liblmdb/mdb.c +++ b/contrib/db/liblmdb/mdb.c @@ -133,7 +133,7 @@ extern int cacheflush(char *addr, int nbytes, int cache); #ifdef _WIN32 typedef int64_t off64_t; #else -typedef off_t off64_t; +//typedef off_t off64_t; #endif