From: Rafaël Carré Date: Mon, 5 May 2008 13:06:47 +0000 (+0200) Subject: Forgotten in fd84d89ba : fix building without spinlocks X-Git-Tag: 0.9.0-test0~1152 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=9d8885ebb7cbf082b9093d3a814970fc67c01afc;p=vlc Forgotten in fd84d89ba : fix building without spinlocks --- diff --git a/include/vlc_threads_funcs.h b/include/vlc_threads_funcs.h index b144d759fc..dc55218db3 100644 --- a/include/vlc_threads_funcs.h +++ b/include/vlc_threads_funcs.h @@ -443,7 +443,7 @@ typedef vlc_mutex_t vlc_spinlock_t; static inline int vlc_spin_init (vlc_spinlock_t *spin) { - return __vlc_mutex_init (spin); + return vlc_mutex_init (spin); } # define vlc_spin_lock vlc_mutex_lock