([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
This commit is contained in:
Andrew McCallum 1996-03-18 13:54:00 +00:00
parent 660b7d7a9c
commit c53287e532

View file

@ -43,7 +43,7 @@ static Class NSArchiver_concrete_class;
+ (void) initialize
{
if (self = [NSArchiver class])
if (self == [NSArchiver class])
NSArchiver_concrete_class = [NSGArchiver class];
}