From d78cb0b36d74d5f8221e0c5bab62ca0cbc933fda Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 17 Jan 2009 18:21:37 +0200 Subject: [PATCH] vlc_object_alive: cosmetics --- include/vlc_objects.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/vlc_objects.h b/include/vlc_objects.h index f188dff00f..9c00a1872b 100644 --- a/include/vlc_objects.h +++ b/include/vlc_objects.h @@ -139,11 +139,10 @@ VLC_EXPORT( void, __vlc_object_kill, ( vlc_object_t * ) ); #define vlc_object_kill(a) \ __vlc_object_kill( VLC_OBJECT(a) ) -static inline bool __vlc_object_alive (const vlc_object_t *obj) +static inline bool vlc_object_alive (const vlc_object_t *obj) { barrier (); return !obj->b_die; } -#define vlc_object_alive(a) \ - __vlc_object_alive( VLC_OBJECT(a) ) +#define vlc_object_alive(a) vlc_object_alive( VLC_OBJECT(a) ) -- 2.39.5