summaryrefslogtreecommitdiff
path: root/src/mingw_functions.c
diff options
context:
space:
mode:
authorBryan Ischo <bryan@ischo.com>2008-10-09 02:52:35 +0000
committerBryan Ischo <bryan@ischo.com>2008-10-09 02:52:35 +0000
commitcdc9f0a8d0f88d3baa8c8e1802217bc712dca13d (patch)
tree752f3b680a3db3549641656aaecc559d3eb7028f /src/mingw_functions.c
parent3ed71a2e4f658bec7f0c886909bc3475778b7741 (diff)
downloadceph-libs3-cdc9f0a8d0f88d3baa8c8e1802217bc712dca13d.tar.gz
* Merged 100:101 from 1.1 branch
* Slight update to TODO
Diffstat (limited to 'src/mingw_functions.c')
-rw-r--r--src/mingw_functions.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mingw_functions.c b/src/mingw_functions.c
index 5ba2211..0e2b7b2 100644
--- a/src/mingw_functions.c
+++ b/src/mingw_functions.c
@@ -35,6 +35,8 @@ unsigned long pthread_self()
int pthread_mutex_init(pthread_mutex_t *mutex, void *v)
{
+ (void) v;
+
InitializeCriticalSection(&(mutex->criticalSection));
return 0;