Fix formatting error

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9019 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 2001-02-07 12:31:58 +00:00
parent 7cfa9ec86b
commit 306d0d95c5
3 changed files with 491 additions and 485 deletions

View file

@ -209,14 +209,15 @@ pty_slave(const char* name)
@implementation NSTask
+ (id)allocWithZone:(NSZone*)zone
+ (id) allocWithZone: (NSZone*)zone
{
NSTask *task;
if (self == [NSTask class])
task = (NSTask *)NSAllocateObject([NSConcreteTask class], 0, zone);
else
task = (NSTask *)NSAllocateObject(self, 0, zone);
return task;
NSTask *task;
if (self == [NSTask class])
task = (NSTask *)NSAllocateObject([NSConcreteTask class], 0, zone);
else
task = (NSTask *)NSAllocateObject(self, 0, zone);
return task;
}
+ (void) initialize