Solved compilation warnings

This commit is contained in:
German Laullon
2011-03-10 16:04:45 -08:00
parent abbb2081c4
commit f9ccf1fe8d
31 changed files with 41 additions and 49 deletions
+1 -1
View File
@@ -245,7 +245,7 @@
fileManager = [NSFileManager defaultManager];
applicationSupportFolder = [self applicationSupportFolder];
if ( ![fileManager fileExistsAtPath:applicationSupportFolder isDirectory:NULL] ) {
[fileManager createDirectoryAtPath:applicationSupportFolder attributes:nil];
[fileManager createDirectoryAtPath:applicationSupportFolder withIntermediateDirectories:YES attributes:nil error:nil];
}
url = [NSURL fileURLWithPath: [applicationSupportFolder stringByAppendingPathComponent: @"GitTest.xml"]];