diff options
author | Alex Gorrod <alexander.gorrod@mongodb.com> | 2015-03-26 14:54:50 +1100 |
---|---|---|
committer | Alex Gorrod <alexander.gorrod@mongodb.com> | 2015-03-26 14:54:50 +1100 |
commit | bffb1e15619bcc461763d53ac68059f3902d93b2 (patch) | |
tree | e255006c728f36bc419a5e1eab6d042fc7ecb045 /src/txn | |
parent | 4b9b0757041053ef327a44a100ee5c33afc2bfd2 (diff) | |
parent | 66676ad5343dd2ccc94ce87831dbed7cc1ad1dbc (diff) | |
download | mongo-bffb1e15619bcc461763d53ac68059f3902d93b2.tar.gz |
Merge pull request #1821 from markbenvenuto/windows_thread_fix
Use beginthreadex, and ensure we use the correct C calling conventions in all callbacks
Diffstat (limited to 'src/txn')
-rw-r--r-- | src/txn/txn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txn/txn.c b/src/txn/txn.c index 6c06a0af820..a1bec569ce7 100644 --- a/src/txn/txn.c +++ b/src/txn/txn.c @@ -12,7 +12,7 @@ * __wt_txnid_cmp -- * Compare transaction IDs for sorting / searching. */ -int +int WT_CDECL __wt_txnid_cmp(const void *v1, const void *v2) { uint64_t id1, id2; |