Indentation changes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1061 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-03-06 14:10:17 +00:00
parent 224b9099b9
commit 7cda86ef49

View file

@ -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 <mccallum@gnu.ai.mit.edu>
Date: August 1994
@ -23,11 +23,11 @@
#include <objects/stdobjects.h>
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)
{