@@ -87,11 +87,11 @@ client = [OFHTTPClient client]; response = [client performRequest: request]; while ((line = [response readLine]) != nil) { void *pool2; - OFArray OF_GENERIC(OFString*) *split; + OFArray OF_GENERIC(OFString *) *split; OFString *const *splitObjects; of_unichar_t codep; if ([line length] == 0) continue; @@ -136,11 +136,11 @@ client = [OFHTTPClient client]; response = [client performRequest: request]; while ((line = [response readLine]) != nil) { void *pool2; - OFArray OF_GENERIC(OFString*) *split; + OFArray OF_GENERIC(OFString *) *split; OFString *const *splitObjects; of_unichar_t codep; if ([line length] == 0 || [line hasPrefix: @"#"]) continue; @@ -168,11 +168,11 @@ [of_stdout writeLine: @" done"]; objc_autoreleasePoolPop(pool); } -- (void)writeTablesToFile: (OFString*)path +- (void)writeTablesToFile: (OFString *)path { void *pool = objc_autoreleasePoolPush(); OFFile *file = [OFFile fileWithPath: path mode: @"wb"]; @@ -444,11 +444,11 @@ [file writeString: @"\n};\n"]; objc_autoreleasePoolPop(pool); } -- (void)writeHeaderToFile: (OFString*)path +- (void)writeHeaderToFile: (OFString *)path { void *pool = objc_autoreleasePoolPush(); OFFile *file = [OFFile fileWithPath: path mode: @"wb"];