From f6cf272a72a5db58f697c2ec3f01a9e5f13ccda7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 5 Jul 2008 19:52:43 +0300 Subject: [PATCH] Missing const --- include/vlc_objects.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vlc_objects.h b/include/vlc_objects.h index c3b207880a..34149d027a 100644 --- a/include/vlc_objects.h +++ b/include/vlc_objects.h @@ -162,7 +162,7 @@ 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 (vlc_object_t *obj) +static inline bool __vlc_object_alive (const vlc_object_t *obj) { barrier (); return !obj->b_die; -- 2.39.2