[vlc-devel] commit: vlc_object_alive: cosmetics ( Rémi Denis-Courmont )

git version control git at videolan.org
Sat Jan 17 17:24:21 CET 2009


vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sat Jan 17 18:21:37 2009 +0200| [d78cb0b36d74d5f8221e0c5bab62ca0cbc933fda] | committer: Rémi Denis-Courmont 

vlc_object_alive: cosmetics

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d78cb0b36d74d5f8221e0c5bab62ca0cbc933fda
---

 include/vlc_objects.h |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/include/vlc_objects.h b/include/vlc_objects.h
index f188dff..9c00a18 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) )




More information about the vlc-devel mailing list