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) {