Index: src/runtime/class.m ================================================================== --- src/runtime/class.m +++ src/runtime/class.m @@ -187,11 +187,11 @@ initialize = sel_registerName("initialize"); for (ml = cls->isa->methodlist; ml != NULL; ml = ml->next) for (i = 0; i < ml->count; i++) - if (sel_isEqual(&ml->methods[i].sel, initialize)) + if (sel_isEqual((SEL)&ml->methods[i].sel, initialize)) ((void(*)(id, SEL))ml->methods[i].imp)(cls, initialize); } inline Class