mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
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:
parent
7cfa9ec86b
commit
306d0d95c5
3 changed files with 491 additions and 485 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue