diff options
Diffstat (limited to 'libobjc/init.c')
-rw-r--r-- | libobjc/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libobjc/init.c b/libobjc/init.c index 954fc9240ae..d50dba026d3 100644 --- a/libobjc/init.c +++ b/libobjc/init.c @@ -319,7 +319,7 @@ __objc_send_message_in_list (MethodList_t method_list, Class class, SEL op) (*mth->method_imp) ((id)class, mth->method_name); /* Add this method into the +load hash table */ - hash_add (&__objc_load_methods, mth->method_imp, mth->method_imp); + hash_add (&__objc_load_methods, mth->method_name, mth->method_imp); DEBUG_PRINTF ("sending +load in class: %s\n", class->name); |