@@ -47,11 +47,11 @@ } bool objc_equal_string(const void *obj1, const void *obj2) { - return !strcmp(obj1, obj2); + return (strcmp(obj1, obj2) == 0); } struct objc_hashtable* objc_hashtable_new(uint32_t (*hash)(const void*), bool (*equal)(const void*, const void*), uint32_t size)