summaryrefslogtreecommitdiff
path: root/pthread_timechange_handler_np.c
diff options
context:
space:
mode:
authorrpj <rpj>2011-03-03 23:37:20 +0000
committerrpj <rpj>2011-03-03 23:37:20 +0000
commite470da85f7b9426eea03d66086c2822bf29e9b05 (patch)
treeb3747768258dc62752612327904be1f1067d5c7f /pthread_timechange_handler_np.c
parent1170175259781ece4a8d99d517230f4b9ecb7b50 (diff)
Some cleanups, mostly x86_64 compat plus interlocked macros
Diffstat (limited to 'pthread_timechange_handler_np.c')
-rw-r--r--pthread_timechange_handler_np.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_timechange_handler_np.c b/pthread_timechange_handler_np.c
index 7d8170a..12bd135 100644
--- a/pthread_timechange_handler_np.c
+++ b/pthread_timechange_handler_np.c
@@ -103,5 +103,5 @@ pthread_timechange_handler_np (void *arg)
LeaveCriticalSection (&ptw32_cond_list_lock);
- return (void *) (result != 0 ? EAGAIN : 0);
+ return (void *) (size_t) (result != 0 ? EAGAIN : 0);
}