Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
HAMANO Tsukasa
OpenLDAP
Commits
619ccdd3
Commit
619ccdd3
authored
Oct 15, 2015
by
Ignacio Casal Quinteiro
Committed by
Howard Chu
Oct 25, 2015
Browse files
ITS#8270 win32: fix conversion error with MSVC
parent
9411de60
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/liblmdb/mdb.c
View file @
619ccdd3
...
...
@@ -210,6 +210,12 @@ union semun {
#define ESECT
#endif
#ifdef _MSC_VER
#define CALL_CONV WINAPI
#else
#define CALL_CONV
#endif
/** @defgroup internal LMDB Internals
* @{
*/
...
...
@@ -8715,7 +8721,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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment