@@ -85,11 +85,11 @@ #define PRE_IVAR ((struct pre_ivar*)(void*)((char*)self - PRE_IVAR_ALIGN)) static struct { Class isa; } alloc_failed_exception; -static Class autoreleasepool = Nil; +static Class autoreleasePool = Nil; static SEL cxx_construct = NULL; static SEL cxx_destruct = NULL; size_t of_pagesize; @@ -785,14 +785,14 @@ { /* * Cache OFAutoreleasePool since class lookups are expensive with the * GNU runtime. */ - if (autoreleasepool == Nil) - autoreleasepool = [OFAutoreleasePool class]; + if (autoreleasePool == Nil) + autoreleasePool = [OFAutoreleasePool class]; - [autoreleasepool addObject: self]; + [autoreleasePool addObject: self]; return self; } - (void)dealloc