Commit f6cf272a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Missing const

parent c7c72691
...@@ -162,7 +162,7 @@ VLC_EXPORT( void, __vlc_object_kill, ( vlc_object_t * ) ); ...@@ -162,7 +162,7 @@ VLC_EXPORT( void, __vlc_object_kill, ( vlc_object_t * ) );
#define vlc_object_kill(a) \ #define vlc_object_kill(a) \
__vlc_object_kill( VLC_OBJECT(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 (); barrier ();
return !obj->b_die; return !obj->b_die;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment