ITS#8270 win32: fix conversion error with MSVC

mdb.RE/0.9
Ignacio Casal Quinteiro 9 years ago committed by Howard Chu
parent 24add6589b
commit 52446f93e7
  1. 8
      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;

Loading…
Cancel
Save