From: RĂ©mi Denis-Courmont Date: Mon, 20 Apr 2009 06:27:47 +0000 (+0300) Subject: Fix precompilation X-Git-Tag: 1.0.0-rc1~299 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=10865b25e025324b96b4e12d0e376d47b0843a5a;p=vlc Fix precompilation --- diff --git a/include/vlc_threads.h b/include/vlc_threads.h index 6f5f591d31..dd0bce7835 100644 --- a/include/vlc_threads.h +++ b/include/vlc_threads.h @@ -335,7 +335,7 @@ static inline int vlc_spin_init (vlc_spinlock_t *spin) #endif static inline void barrier (void) { -#if defined (__GNUC__) && !(__APPLE__) && \ +#if defined (__GNUC__) && !defined (__APPLE__) && \ ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1)) __sync_synchronize (); #elif defined(__APPLE__)