From d2c356a76247c85e4c70fc3cc7b556b38e0189cc Mon Sep 17 00:00:00 2001 From: mccallum Date: Wed, 6 Mar 1996 14:10:17 +0000 Subject: [PATCH] Indentation changes. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1061 72102866-910b-0410-8b05-ffd578937521 --- Source/NSAllocateObject.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) {