From 52446f93e7bc7c075b47d2e584a26c978f21f406 Mon Sep 17 00:00:00 2001 From: Ignacio Casal Quinteiro Date: Thu, 15 Oct 2015 13:22:25 -0700 Subject: [PATCH] ITS#8270 win32: fix conversion error with MSVC --- libraries/liblmdb/mdb.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c index 1dc7152c7f..828e43205d 100644 --- a/libraries/liblmdb/mdb.c +++ b/libraries/liblmdb/mdb.c @@ -185,6 +185,12 @@ extern int cacheflush(char *addr, int nbytes, int cache); #define ESECT #endif +#ifdef _MSC_VER +#define CALL_CONV WINAPI +#else +#define CALL_CONV +#endif + /** @defgroup internal LMDB Internals * @{ */ @@ -8509,7 +8515,7 @@ typedef struct mdb_copy { } mdb_copy; /** Dedicated writer thread for compacting copy. */ -static THREAD_RET ESECT +static THREAD_RET ESECT CALL_CONV mdb_env_copythr(void *arg) { mdb_copy *my = arg; -- 2.39.5