[vlc-devel] commit: macosx: Remove a warning that happen way too much. (Pierre d' Herbemont )

git version control git at videolan.org
Tue Jul 22 22:04:53 CEST 2008


vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Tue Jul 22 22:06:39 2008 +0200| [787b715dd09c187e87caa1f060653613e813a1b3]

macosx: Remove a warning that happen way too much.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=787b715dd09c187e87caa1f060653613e813a1b3
---

 modules/gui/macosx/playlist.m |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m
index 74b44e6..a01e714 100644
--- a/modules/gui/macosx/playlist.m
+++ b/modules/gui/macosx/playlist.m
@@ -189,7 +189,9 @@
 
     if( o_value == nil )
     {
-        msg_Warn( VLCIntf, "playlist item misses pointer value, adding one" );
+        /* Why is there a warning if that happens all the time and seems
+         * to be normal? Add an assert and fix it. 
+         * msg_Warn( VLCIntf, "playlist item misses pointer value, adding one" ); */
         o_value = [[NSValue valueWithPointer: p_return] retain];
     }
     return o_value;




More information about the vlc-devel mailing list