[vlc-devel] commit: Forgotten in fd84d89ba : fix building without spinlocks ( Rafaël Carré )
git version control
git at videolan.org
Mon May 5 15:06:00 CEST 2008
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Mon May 5 15:06:47 2008 +0200| [9d8885ebb7cbf082b9093d3a814970fc67c01afc]
Forgotten in fd84d89ba : fix building without spinlocks
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9d8885ebb7cbf082b9093d3a814970fc67c01afc
---
include/vlc_threads_funcs.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/vlc_threads_funcs.h b/include/vlc_threads_funcs.h
index b144d75..dc55218 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
More information about the vlc-devel
mailing list