You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2014/06/04 21:57:59 UTC

git commit: Add missing semicolon (copy & paste error)

Repository: cordova-plugin-file
Updated Branches:
  refs/heads/master 78122dffe -> d84d0b07a


Add missing semicolon (copy & paste error)


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/commit/d84d0b07
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/d84d0b07
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/d84d0b07

Branch: refs/heads/master
Commit: d84d0b07a4c715f98c6d2624ae034445d9e3b0b0
Parents: 78122df
Author: Andrew Grieve <ag...@chromium.org>
Authored: Wed Jun 4 15:57:45 2014 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Jun 4 15:57:45 2014 -0400

----------------------------------------------------------------------
 src/ios/CDVFile.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/d84d0b07/src/ios/CDVFile.h
----------------------------------------------------------------------
diff --git a/src/ios/CDVFile.h b/src/ios/CDVFile.h
index ccd5b01..c37fb44 100644
--- a/src/ios/CDVFile.h
+++ b/src/ios/CDVFile.h
@@ -99,7 +99,7 @@ typedef int CDVFileError;
 }
 
 - (NSNumber*)checkFreeDiskSpace:(NSString*)appPath;
-- (NSDictionary*)makeEntryForPath:(NSString*)fullPath fileSystemName:(NSString *)fsName isDirectory:(BOOL)isDir
+- (NSDictionary*)makeEntryForPath:(NSString*)fullPath fileSystemName:(NSString *)fsName isDirectory:(BOOL)isDir;
 - (NSDictionary *)makeEntryForURL:(NSURL *)URL;
 - (CDVFilesystemURL *)fileSystemURLforLocalPath:(NSString *)localPath;