([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:
mccallum 1996-03-18 13:54:00 +00:00
parent 7744490c10
commit 4f654a66b5

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];
}