Commit d47a21eb authored by David Fuhrmann's avatar David Fuhrmann

macosx: remove unneeded cast

parent 3b20c97b
...@@ -305,7 +305,7 @@ static VLCAudioEffects *_o_sharedInstance = nil; ...@@ -305,7 +305,7 @@ static VLCAudioEffects *_o_sharedInstance = nil;
tempArray = [tempString componentsSeparatedByString:@":"]; tempArray = [tempString componentsSeparatedByString:@":"];
count = [tempArray count]; count = [tempArray count];
for (NSUInteger x = 0; x < count; x++) for (NSUInteger x = 0; x < count; x++)
playlist_EnableAudioFilter(p_playlist, (char *)[[tempArray objectAtIndex:x] UTF8String], true); playlist_EnableAudioFilter(p_playlist, [[tempArray objectAtIndex:x] UTF8String], true);
} }
} }
config_PutPsz(p_intf,"audio-filter",[tempString UTF8String]); config_PutPsz(p_intf,"audio-filter",[tempString UTF8String]);
......
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