[vlc-commits] Fixed warning on incompatible pointer types
Maxim Bublis
git at videolan.org
Mon Dec 2 13:41:43 CET 2013
vlc/vlc-2.1 | branch: master | Maxim Bublis <b at codemonkey.ru> | Wed Nov 20 13:52:59 2013 +0400| [6232a2199bb2fbf8eaed03cd0011da8688d52c1a] | committer: Felix Paul Kühne
Fixed warning on incompatible pointer types
Signed-off-by: Felix Paul Kühne <fkuehne at videolan.org>
(cherry picked from commit bcd00e3be19095558de9d76f2d9aac38bfbd7c94)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=6232a2199bb2fbf8eaed03cd0011da8688d52c1a
---
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