Minor fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2975 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1998-09-10 04:48:50 +00:00
parent c36d6e4310
commit 7fdaa4dd84
8 changed files with 54 additions and 22 deletions

View file

@ -750,8 +750,8 @@ static int debug_run_loop = 0;
NSObjectMapValueCallBacks, 0);
_mode_2_watchers = NSCreateMapTable (NSObjectMapKeyCallBacks,
NSObjectMapValueCallBacks, 0);
_performers = [[NSMutableArray arrayWithCapacity:8] retain];
_timedPerformers = [[NSMutableArray arrayWithCapacity:8] retain];
_performers = [[NSMutableArray alloc] initWithCapacity:8];
_timedPerformers = [[NSMutableArray alloc] initWithCapacity:8];
return self;
}