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

Remove unused NODBG object flag

parent ce946ab3
......@@ -32,7 +32,6 @@
*/
/* Object flags */
#define OBJECT_FLAGS_NODBG 0x0001
#define OBJECT_FLAGS_QUIET 0x0002
#define OBJECT_FLAGS_NOINTERACT 0x0004
......
......@@ -266,8 +266,7 @@ void msg_GenericVa (vlc_object_t *p_this, int i_type,
assert (p_this);
if( p_this->i_flags & OBJECT_FLAGS_QUIET ||
(p_this->i_flags & OBJECT_FLAGS_NODBG && i_type == VLC_MSG_DBG) )
if( p_this->i_flags & OBJECT_FLAGS_QUIET )
return;
msg_bank_t *bank = libvlc_bank (p_this->p_libvlc);
......
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