Commit 262f762d authored by Derk-Jan Hartman's avatar Derk-Jan Hartman Committed by Jean-Baptiste Kempf

macosx: remove a NSLog message.

(cherry picked from commit 5cbb5848e90522556a838ccf04646727fed10cc9)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 1e043123
......@@ -589,8 +589,8 @@
if( !p_input ) return;
c = [[openPanel filenames] count];
NSLog( @"count: %i", c );
for (int i = 0; [[openPanel filenames] count] > i ; i++)
for (int i = 0; i < [[openPanel filenames] count] ; i++)
{
msg_Dbg( VLCIntf, "loading subs from %s", [[[openPanel filenames] objectAtIndex: i] UTF8String] );
if( input_AddSubtitle( p_input, [[[openPanel filenames] objectAtIndex: i] UTF8String], TRUE ) )
......
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