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

filter: avoid vlc_object_t.psz_object_name

parent fa7e5230
...@@ -347,7 +347,7 @@ static filter_t *filter_chain_AppendFilterInternal( filter_chain_t *p_chain, ...@@ -347,7 +347,7 @@ static filter_t *filter_chain_AppendFilterInternal( filter_chain_t *p_chain,
vlc_array_append( &p_chain->mouses, p_mouse ); vlc_array_append( &p_chain->mouses, p_mouse );
msg_Dbg( p_chain->p_this, "Filter '%s' (%p) appended to chain", msg_Dbg( p_chain->p_this, "Filter '%s' (%p) appended to chain",
psz_name ? psz_name : vlc_internals(p_filter)->psz_object_name, psz_name ? psz_name : module_get_name(p_filter->p_module, false),
p_filter ); p_filter );
return p_filter; return p_filter;
......
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