mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-23 07:12:56 -05:00
ITS#8270 win32: fix conversion error with MSVC
This commit is contained in:
parent
24add6589b
commit
52446f93e7
1 changed files with 7 additions and 1 deletions
|
|
@ -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…
Reference in a new issue