Index: src/OFFile.m ================================================================== --- src/OFFile.m +++ src/OFFile.m @@ -116,11 +116,11 @@ self = [super init]; if ((fp = fopen([path cString], [mode cString])) == NULL) { c = isa; [super dealloc]; - @throw [OFOpenFileFailedException newWithClass: c + @throw [OFOpenFileFailedException newWithClass: c andPath: path andMode: mode]; } return self; Index: src/OFObject.h ================================================================== --- src/OFObject.h +++ src/OFObject.h @@ -34,11 +34,11 @@ + (void)initialize; /** * Allocates memory for an instance of the class. * - * alloc will never return nil, instead, it will throw an + * alloc will never return nil, instead, it will throw an * OFAllocFailedException. * * \return The allocated object. */ + alloc; Index: tests/OFAutoreleasePool/OFAutoreleasePool.m ================================================================== --- tests/OFAutoreleasePool/OFAutoreleasePool.m +++ tests/OFAutoreleasePool/OFAutoreleasePool.m @@ -39,11 +39,11 @@ - init { id ret; inits++; - + ret = init(self, _cmd); printf("New %s with retain cnt " ZD "\n", [self name], [ret retainCount]); return ret;