Locking tidups/fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18016 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2003-11-01 07:09:12 +00:00
parent 6737b2a32f
commit 310d9bd763
3 changed files with 18 additions and 10 deletions

View file

@ -893,7 +893,7 @@ static NSRecursiveLock *local_lock = nil;
@interface _GSLockInitializer : NSObject
@end
@implementation _GSLockInitializer
+ (void)initialize
+ (void) initialize
{
if (local_lock == nil)
{
@ -957,7 +957,7 @@ newLockAt(Class self, SEL _cmd, id *location)
*
* </example>
*/
+ (id)newLockAt:(id *)location
+ (id) newLockAt: (id *)location
{
return newLockAt(self, _cmd, location);
}
@ -987,7 +987,7 @@ newLockAt(Class self, SEL _cmd, id *location)
*
* </example>
*/
+ (id)newLockAt:(id *)location
+ (id) newLockAt: (id *)location
{
return newLockAt(self, _cmd, location);
}