From 5afe6c0236d8be57bc9bf1cba7fb5ab5e832a75e Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 3 Sep 2000 16:55:13 +0000 Subject: Update. 2000-09-03 Ulrich Drepper * spinlock.h (testandset): Add cast to avoid warning. Patch by Franz Sirl . --- linuxthreads/spinlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linuxthreads/spinlock.h') diff --git a/linuxthreads/spinlock.h b/linuxthreads/spinlock.h index f88e8f3b0e..b3d02314bf 100644 --- a/linuxthreads/spinlock.h +++ b/linuxthreads/spinlock.h @@ -49,7 +49,7 @@ static inline int compare_and_swap(long * ptr, long oldval, long newval, #elif defined(HAS_COMPARE_AND_SWAP) #ifdef IMPLEMENT_TAS_WITH_CAS -#define testandset(p) !__compare_and_swap(p, 0, 1) +#define testandset(p) !__compare_and_swap((long int *) p, 0, 1) #endif #ifdef HAS_COMPARE_AND_SWAP_WITH_RELEASE_SEMANTICS -- cgit 1.4.1