[vlc-commits] Fixed warning on incompatible pointer types

Maxim Bublis git at videolan.org
Mon Dec 2 13:22:01 CET 2013


vlc | branch: master | Maxim Bublis <b at codemonkey.ru> | 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 <fkuehne at videolan.org>

> 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;



More information about the vlc-commits mailing list