@@ -57,15 +57,12 @@ if (URL.port == nil) { [of_stderr writeLine: @"Need a port!"]; [OFApplication terminateWithStatus: 1]; } - [sock connectToHost: URL.host - port: URL.port.shortValue]; - - return [OFPair pairWithFirstObject: sock - secondObject: sock]; + [sock connectToHost: URL.host port: URL.port.shortValue]; + return [OFPair pairWithFirstObject: sock secondObject: sock]; } [of_stderr writeFormat: @"Invalid protocol: %@\n", scheme]; [OFApplication terminateWithStatus: 1]; abort(); @@ -139,12 +136,11 @@ for (OFPair *pair in _streams) { if (pair.firstObject == stream) continue; - [pair.secondObject writeBuffer: buffer - length: length]; + [pair.secondObject writeBuffer: buffer length: length]; } return true; } @end