@@ -60,12 +60,12 @@ for (i = 0; cats[i] != NULL; i++); if ((ncats = realloc(cats, (i + 2) * sizeof(struct objc_abi_category*))) == NULL) - ERROR("Not enough memory for category %s of class %s!", - cat->category_name, cat->class_name); + OBJC_ERROR("Not enough memory for category %s of " + "class %s!", cat->category_name, cat->class_name); ncats[i] = cat; ncats[i + 1] = NULL; objc_hashtable_set(categories, cat->class_name, ncats); @@ -76,11 +76,11 @@ return; } if ((cats = malloc(2 * sizeof(struct objc_abi_category*))) == NULL) - ERROR("Not enough memory for category %s of class %s!\n", + OBJC_ERROR("Not enough memory for category %s of class %s!\n", cat->category_name, cat->class_name); cats[0] = cat; cats[1] = NULL; objc_hashtable_set(categories, cat->class_name, cats);