diff --git a/Source/NSAllocateObject.m b/Source/NSAllocateObject.m index 49fc83649..727cc52f7 100644 --- a/Source/NSAllocateObject.m +++ b/Source/NSAllocateObject.m @@ -1,5 +1,5 @@ /* Implementation of NSAllocateObject() for GNUStep - Copyright (C) 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. Written by: R. Andrew McCallum Date: August 1994 @@ -23,11 +23,11 @@ #include -NSObject *NSAllocateObject(Class aClass, unsigned extraBytes, NSZone *zone) +NSObject *NSAllocateObject (Class aClass, unsigned extraBytes, NSZone *zone) { id new = nil; int size = aClass->instance_size + extraBytes; - if (CLS_ISCLASS(aClass)) + if (CLS_ISCLASS (aClass)) new = NSZoneMalloc (zone, size); if (new != nil) {