Index: src/OFStream.h ================================================================== --- src/OFStream.h +++ src/OFStream.h @@ -167,11 +167,11 @@ * called again with the same buffer and maximum length when more * data has been received. If you want the next method in the * queue to handle the data received next, you need to return * false from the method. * @param selector The selector to call on the target. The signature must be - * `bool (OFStream *stream, void *buffer, size_t size, + * `bool (OFStream *stream, void *buffer, size_t length, * OFException *exception)`. */ - (void)asyncReadIntoBuffer: (void*)buffer length: (size_t)length target: (id)target Index: tests/OFKernelEventObserverTests.m ================================================================== --- tests/OFKernelEventObserverTests.m +++ tests/OFKernelEventObserverTests.m @@ -92,11 +92,11 @@ [observer observeForTimeInterval: 0.01] == 1) TEST(@"-[observe] keeping event until read", R(readData = true) && [observer observeForTimeInterval: 0.01] == 1) - TEST(@"-[observer] time out due to no events", + TEST(@"-[observe] time out due to no events", R(readData = false) && [observer observeForTimeInterval: 0.01] == 0) TEST(@"-[observe] correct number of events", events == 3) [pool drain]; Index: utils/ofzip/OFZIP.m ================================================================== --- utils/ofzip/OFZIP.m +++ utils/ofzip/OFZIP.m @@ -60,11 +60,11 @@ static void help(OFStream *stream, bool full, int status) { [stream writeFormat: - @"Usage: %@ -[flnqvx] archive.zip [file1 file2 ...]\n", + @"Usage: %@ -[fhlnqvx] archive.zip [file1 file2 ...]\n", [OFApplication programName]]; if (full) [stream writeString: @"\nOptions:\n"