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

Kill implicit pointer -> bool cast

parent 00fa1444
...@@ -70,7 +70,8 @@ static inline bool is_queue_initialized(libvlc_event_manager_t * p_em) ...@@ -70,7 +70,8 @@ static inline bool is_queue_initialized(libvlc_event_manager_t * p_em)
static inline bool current_thread_is_asynch_thread(libvlc_event_manager_t * p_em) static inline bool current_thread_is_asynch_thread(libvlc_event_manager_t * p_em)
{ {
return vlc_threadvar_get(queue(p_em)->is_asynch_dispatch_thread_var); return vlc_threadvar_get(queue(p_em)->is_asynch_dispatch_thread_var)
!= NULL;
} }
/* Lock must be held */ /* Lock must be held */
......
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