vlc | branch: master | Maxim Bublis <[email protected]> | Wed Nov 20 13:52:59 2013 +0400| [bcd00e3be19095558de9d76f2d9aac38bfbd7c94] | committer: Felix Paul Kühne
Fixed warning on incompatible pointer types Signed-off-by: Felix Paul Kühne <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bcd00e3be19095558de9d76f2d9aac38bfbd7c94 --- modules/gui/macosx/wizard.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/macosx/wizard.m b/modules/gui/macosx/wizard.m index 082b1e9..e8c832f 100644 --- a/modules/gui/macosx/wizard.m +++ b/modules/gui/macosx/wizard.m @@ -1097,7 +1097,7 @@ static VLCWizard *_o_sharedInstance = nil; NSMutableArray * tempArray = [[NSMutableArray alloc] init]; int x = 0; int y = [[o_userSelections objectForKey:@"pathToStrm"] count]; - NSMutableString * tempString = [[NSMutableString alloc] init]; + NSString * tempString = [[NSString alloc] init]; while( x != y) { NSString * fileNameToUse; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
