summaryrefslogtreecommitdiff
path: root/pthread_once.c
diff options
context:
space:
mode:
authorrpj <rpj>2011-07-01 09:33:35 +0000
committerrpj <rpj>2011-07-01 09:33:35 +0000
commitc3973648250aeb062d7d99a71257e2287c18a1ae (patch)
treef8c028e0bd909d6d3aad9d295490efc36500b0d6 /pthread_once.c
parentff142e0fc8aa85cc9c11f0bf75422ce7297603fb (diff)
See the ChangeLog
Diffstat (limited to 'pthread_once.c')
-rw-r--r--pthread_once.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_once.c b/pthread_once.c
index 129e4b5..f4a36ca 100644
--- a/pthread_once.c
+++ b/pthread_once.c
@@ -46,7 +46,7 @@ pthread_once (pthread_once_t * once_control, void (*init_routine) (void))
}
if ((PTW32_INTERLOCKED_LONG)PTW32_FALSE ==
- (PTW32_INTERLOCKED_LONG)PTW32_INTERLOCKED_EXCHANGE_ADD_LONG((PTW32_INTERLOCKED_PTR)&once_control->done,
+ (PTW32_INTERLOCKED_LONG)PTW32_INTERLOCKED_EXCHANGE_ADD_LONG((PTW32_INTERLOCKED_LONGPTR)&once_control->done,
(PTW32_INTERLOCKED_LONG)0)) /* MBR fence */
{
ptw32_mcs_local_node_t node;