From 37381b61344084f8c3be03104ad312f8b72b9fd8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Felix=20Paul=20K=C3=BChne?= Date: Sun, 23 Dec 2007 18:20:06 +0000 Subject: [PATCH] macosx:playlist.m turn an error msg into a warning as the event isn't as bad as it seems to be --- modules/gui/macosx/playlist.m | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; } -- 2.39.2