diff options
Diffstat (limited to 'pthread_once.c')
-rw-r--r-- | pthread_once.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pthread_once.c b/pthread_once.c index fcfd999..129e4b5 100644 --- a/pthread_once.c +++ b/pthread_once.c @@ -45,9 +45,9 @@ pthread_once (pthread_once_t * once_control, void (*init_routine) (void)) return EINVAL; } - if ((PTW32_INTERLOCKED_VALUE)PTW32_FALSE == - (PTW32_INTERLOCKED_VALUE)PTW32_INTERLOCKED_EXCHANGE_ADD((PTW32_INTERLOCKED_PTR)&once_control->done, - (PTW32_INTERLOCKED_VALUE)0)) /* MBR fence */ + if ((PTW32_INTERLOCKED_LONG)PTW32_FALSE == + (PTW32_INTERLOCKED_LONG)PTW32_INTERLOCKED_EXCHANGE_ADD_LONG((PTW32_INTERLOCKED_PTR)&once_control->done, + (PTW32_INTERLOCKED_LONG)0)) /* MBR fence */ { ptw32_mcs_local_node_t node; |