fix missing comparison

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34413 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2012-01-04 12:44:29 +00:00
parent a2a14fcb8d
commit 81262af7e6

View file

@ -51,8 +51,8 @@ GS_PRIVATE_INTERNAL(NSXMLDTDNode)
- (id) initWithKind: (NSXMLNodeKind)kind options: (NSUInteger)theOptions - (id) initWithKind: (NSXMLNodeKind)kind options: (NSUInteger)theOptions
{ {
if (NSXMLEntityDeclarationKind == kind if (NSXMLEntityDeclarationKind == kind
|| NSXMLElementDeclarationKind || NSXMLElementDeclarationKind == kind
|| NSXMLNotationDeclarationKind) || NSXMLNotationDeclarationKind == kind)
{ {
/* Create holder for internal instance variables so that we'll have /* Create holder for internal instance variables so that we'll have
* all our ivars available rather than just those of the superclass. * all our ivars available rather than just those of the superclass.