From c53287e532653db122d020f4b0e3f48de903d555 Mon Sep 17 00:00:00 2001 From: Andrew McCallum Date: Mon, 18 Mar 1996 13:54:00 +0000 Subject: [PATCH] ([NSArchiver +initialize]): Use ==, not = in if test. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1163 72102866-910b-0410-8b05-ffd578937521 --- Source/NSArchiver.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSArchiver.m b/Source/NSArchiver.m index 613d2dbc0..3ac9d73b7 100644 --- a/Source/NSArchiver.m +++ b/Source/NSArchiver.m @@ -43,7 +43,7 @@ static Class NSArchiver_concrete_class; + (void) initialize { - if (self = [NSArchiver class]) + if (self == [NSArchiver class]) NSArchiver_concrete_class = [NSGArchiver class]; }