Skip to content

Commit

Permalink
win32: fix conversion error
Browse files Browse the repository at this point in the history
  • Loading branch information
nacho committed Oct 15, 2015
1 parent 67a61ed commit 076281a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/liblmdb/mdb.c
Expand Up @@ -8930,7 +8930,7 @@ mdb_env_copyfd1(MDB_env *env, HANDLE fd)
my.mc_toggle = 0;
my.mc_env = env;
my.mc_fd = fd;
THREAD_CREATE(thr, mdb_env_copythr, &my);
THREAD_CREATE(thr, (LPTHREAD_START_ROUTINE)mdb_env_copythr, &my);

rc = mdb_txn_begin(env, NULL, MDB_RDONLY, &txn);
if (rc)
Expand Down

0 comments on commit 076281a

Please sign in to comment.