From aae279ec91a1d8e4f55e694c5f4a55912c96d94b Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Thu, 30 Sep 2010 11:39:32 +0000 Subject: [PATCH] fixed incorrect asssertion git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@31447 72102866-910b-0410-8b05-ffd578937521 --- GSLinkedList.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GSLinkedList.m b/GSLinkedList.m index cc5087b..eb835ee 100644 --- a/GSLinkedList.m +++ b/GSLinkedList.m @@ -27,7 +27,7 @@ - (void) dealloc { - NSAssert(nil != owner, NSInternalInconsistencyException); + NSAssert(nil == owner, NSInternalInconsistencyException); [item release]; [super dealloc]; }