From 16a2ec71287b9d697c14d84f38a32288a4224e14 Mon Sep 17 00:00:00 2001 From: nico Date: Thu, 12 Sep 2002 09:09:54 +0000 Subject: [PATCH] Fixed typo in NSObject private method declaration git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14434 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 6 ++++++ Source/NSObject.m | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 718d7dad4..c46e001d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Sep 12 11:02:03 2002 Nicola Pero + + * Source/NSObject.m ([+_becomeMultiThreaded:]): Fixed typo - this + method was declared to take a 'NSNotification' rather than a + 'NSNotification *' argument. + 2002-09-10 Richard Frith-Macdonald * Source/GSLocale.m: Double locking check fix diff --git a/Source/NSObject.m b/Source/NSObject.m index 0caf43970..2b8df1600 100644 --- a/Source/NSObject.m +++ b/Source/NSObject.m @@ -750,7 +750,7 @@ static BOOL double_release_check_enabled = NO; */ @implementation NSObject -+ (void) _becomeMultiThreaded: (NSNotification)aNotification ++ (void) _becomeMultiThreaded: (NSNotification *)aNotification { if (allocationLock == 0) {