@@ -134,11 +134,11 @@ { 'x', @"extract", 0, NULL, NULL }, { '\0', nil, 0, NULL, NULL } }; OFOptionsParser *optionsParser; of_unichar_t option, mode = '\0'; - OFArray OF_GENERIC(OFString*) *remainingArguments, *files; + OFArray OF_GENERIC(OFString *) *remainingArguments, *files; id archive; #ifdef OF_HAVE_SANDBOX OFSandbox *sandbox = [[OFSandbox alloc] init]; @try { @@ -295,12 +295,12 @@ } [OFApplication terminateWithStatus: _exitStatus]; } -- (id )openArchiveWithPath: (OFString*)path - type: (OFString*)type +- (id )openArchiveWithPath: (OFString *)path + type: (OFString *)type { OFFile *file = nil; id archive = nil; [_archivePath release]; @@ -382,12 +382,12 @@ } return archive; } -- (bool)shouldExtractFile: (OFString*)fileName - outFileName: (OFString*)outFileName +- (bool)shouldExtractFile: (OFString *)fileName + outFileName: (OFString *)outFileName { OFString *line; if (_overwrite == 1 || ![[OFFileManager defaultManager] fileExistsAtPath: outFileName]) @@ -440,13 +440,13 @@ @"file", fileName)]; return true; } -- (ssize_t)copyBlockFromStream: (OFStream*)input - toStream: (OFStream*)output - fileName: (OFString*)fileName +- (ssize_t)copyBlockFromStream: (OFStream *)input + toStream: (OFStream *)output + fileName: (OFString *)fileName { char buffer[BUFFER_SIZE]; size_t length; @try {