[vlc-devel] commit: vlc_object_find(playlist) is an error ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat Jun 14 16:09:48 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sat Jun 14 17:10:40 2008 +0300| [ed1e1f8fc74fec155de7dd615801eb69f6f0d411]
vlc_object_find(playlist) is an error
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ed1e1f8fc74fec155de7dd615801eb69f6f0d411
---
src/misc/objects.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/misc/objects.c b/src/misc/objects.c
index 03bbd6a..69a0e82 100644
--- a/src/misc/objects.c
+++ b/src/misc/objects.c
@@ -715,8 +715,8 @@ void * __vlc_object_find( vlc_object_t *p_this, int i_type, int i_mode )
{
#ifndef NDEBUG
if (i_type == VLC_OBJECT_PLAYLIST)
- msg_Warn (p_this, "using vlc_object_find(VLC_OBJECT_PLAYLIST) "
- "instead of pl_Yield()");
+ msg_Err (p_this, "using vlc_object_find(VLC_OBJECT_PLAYLIST) "
+ "instead of pl_Yield()");
#endif
return vlc_object_find (p_this->p_libvlc, i_type,
(i_mode & ~0x000f)|FIND_CHILD);
More information about the vlc-devel
mailing list