@@ -144,11 +144,11 @@ /* * We don't care if making it smaller * fails. */ if ((locations = realloc(old->locations, - old->count * sizeof(id*))) != NULL) + old->count * sizeof(id *))) != NULL) old->locations = locations; } break; } @@ -166,11 +166,11 @@ objc_hashtable_set(hashtable, value, ref); } if ((ref->locations = realloc(ref->locations, - (ref->count + 1) * sizeof(id*))) == NULL) + (ref->count + 1) * sizeof(id *))) == NULL) OBJC_ERROR("Not enough memory to allocate weak " "reference!") ref->locations[ref->count++] = object; } else