@@ -350,12 +350,12 @@ } - (OFArray*)allKeys { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; - id *keys = [self allocMemoryWithItemSize: sizeof(id) - count: [self count]]; + id *keys = [self allocMemoryWithSize: sizeof(id) + count: [self count]]; OFArray *ret; OFEnumerator *enumerator; id key; size_t i = 0; @@ -380,12 +380,12 @@ } - (OFArray*)allObjects { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; - id *objects = [self allocMemoryWithItemSize: sizeof(id) - count: [self count]]; + id *objects = [self allocMemoryWithSize: sizeof(id) + count: [self count]]; OFArray *ret; OFEnumerator *enumerator; id object; size_t i = 0;