[vlc-devel] commit: Remove two possibly wild references to psz_object_name ( Rémi Denis-Courmont )
git version control
git at videolan.org
Wed Aug 19 23:05:46 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Aug 19 23:52:56 2009 +0300| [fc24fbabae0d4ae4cf41c1328c33fe5ad1ce7dfd] | committer: Rémi Denis-Courmont
Remove two possibly wild references to psz_object_name
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fc24fbabae0d4ae4cf41c1328c33fe5ad1ce7dfd
---
src/misc/filter_chain.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/src/misc/filter_chain.c b/src/misc/filter_chain.c
index 255a25e..d66d2a7 100644
--- a/src/misc/filter_chain.c
+++ b/src/misc/filter_chain.c
@@ -412,16 +412,15 @@ static int filter_chain_DeleteFilterInternal( filter_chain_t *p_chain,
/* Oops, filter wasn't found
* FIXME shoulnd't it be an assert instead ? */
msg_Err( p_chain->p_this,
- "Couldn't find filter '%s' (%p) when trying to remove it from chain",
- p_filter->psz_object_name, p_filter );
+ "Couldn't find filter %p when trying to remove it from chain",
+ p_filter );
return VLC_EGENERIC;
}
/* Remove it from the chain */
vlc_array_remove( &p_chain->filters, i_filter_idx );
- msg_Dbg( p_chain->p_this, "Filter '%s' (%p) removed from chain",
- p_filter->psz_object_name, p_filter );
+ msg_Dbg( p_chain->p_this, "Filter %p removed from chain", p_filter );
/* Destroy the filter object */
if( IsInternalVideoAllocator( p_filter ) )
More information about the vlc-devel
mailing list