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

No need to lookup i_verbose. The core does it anyway.

parent 6b42b421
...@@ -62,9 +62,6 @@ void E_(Close_LuaIntf)( vlc_object_t * ); ...@@ -62,9 +62,6 @@ void E_(Close_LuaIntf)( vlc_object_t * );
*****************************************************************************/ *****************************************************************************/
static inline void lua_Dbg( vlc_object_t * p_this, const char * ppz_fmt, ... ) static inline void lua_Dbg( vlc_object_t * p_this, const char * ppz_fmt, ... )
{ {
if( p_this->p_libvlc->i_verbose < 3 )
return;
va_list ap; va_list ap;
va_start( ap, ppz_fmt ); va_start( ap, ppz_fmt );
__msg_GenericVa( ( vlc_object_t *)p_this, MSG_QUEUE_NORMAL, __msg_GenericVa( ( vlc_object_t *)p_this, MSG_QUEUE_NORMAL,
......
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