From: Pierre d'Herbemont Date: Tue, 22 Jul 2008 20:06:39 +0000 (+0200) Subject: macosx: Remove a warning that happen way too much. X-Git-Tag: 0.9.0-test3~325 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=787b715dd09c187e87caa1f060653613e813a1b3;p=vlc macosx: Remove a warning that happen way too much. --- diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m index 74b44e6bd2..a01e714b37 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;