[vlc-devel] commit: filter: avoid vlc_object_t.psz_object_name ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Aug 23 20:22:20 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Aug 23 21:21:52 2009 +0300| [cb6ab187090f5c840fc8b6016ba121dbeef67d49] | committer: Rémi Denis-Courmont
filter: avoid vlc_object_t.psz_object_name
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cb6ab187090f5c840fc8b6016ba121dbeef67d49
---
src/misc/filter_chain.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/misc/filter_chain.c b/src/misc/filter_chain.c
index 1e5c7f4..c5fb47b 100644
--- a/src/misc/filter_chain.c
+++ b/src/misc/filter_chain.c
@@ -347,7 +347,7 @@ static filter_t *filter_chain_AppendFilterInternal( filter_chain_t *p_chain,
vlc_array_append( &p_chain->mouses, p_mouse );
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 );
return p_filter;
More information about the vlc-devel
mailing list