Commit 37381b61 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx:playlist.m turn an error msg into a warning as the event isn't as bad as it seems to be

parent 7dfd1a1d
...@@ -82,8 +82,7 @@ ...@@ -82,8 +82,7 @@
case NSEnterCharacter: case NSEnterCharacter:
case NSCarriageReturnCharacter: case NSCarriageReturnCharacter:
[(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist] [(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist] playItem:self];
playItem:self];
break; break;
default: default:
...@@ -201,8 +200,8 @@ ...@@ -201,8 +200,8 @@
if( o_value == nil ) if( o_value == nil )
{ {
msg_Warn( VLCIntf, "playlist item misses pointer value, adding one" );
o_value = [[NSValue valueWithPointer: p_return] retain]; o_value = [[NSValue valueWithPointer: p_return] retain];
msg_Err( VLCIntf, "missing playlist item's pointer value" );
} }
return o_value; return o_value;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment