From: Felix Paul Kühne Date: Sun, 23 Dec 2007 18:20:06 +0000 (+0000) Subject: macosx:playlist.m turn an error msg into a warning as the event isn't as bad as it... X-Git-Tag: 0.9.0-test0~3893 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=37381b61344084f8c3be03104ad312f8b72b9fd8;p=vlc macosx:playlist.m turn an error msg into a warning as the event isn't as bad as it seems to be --- diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m index a13cfa3b80..87833aa828 100644 --- a/modules/gui/macosx/playlist.m +++ b/modules/gui/macosx/playlist.m @@ -82,8 +82,7 @@ case NSEnterCharacter: case NSCarriageReturnCharacter: - [(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist] - playItem:self]; + [(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist] playItem:self]; break; default: @@ -201,8 +200,8 @@ if( o_value == nil ) { + msg_Warn( VLCIntf, "playlist item misses pointer value, adding one" ); o_value = [[NSValue valueWithPointer: p_return] retain]; - msg_Err( VLCIntf, "missing playlist item's pointer value" ); } return o_value; }