From 8cb7c05c88e333a1d05aaeb5acfec3236ef08053 Mon Sep 17 00:00:00 2001 From: lynnchin Date: Wed, 1 Feb 2012 19:13:59 +1100 Subject: [PATCH] Update line 171 to remove "%s" to populate the result string. --- Foundation/CPPredicate/CPCompoundPredicate.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/CPPredicate/CPCompoundPredicate.j b/Foundation/CPPredicate/CPCompoundPredicate.j index c4b94b4ad..d4fa0b1b2 100644 --- a/Foundation/CPPredicate/CPCompoundPredicate.j +++ b/Foundation/CPPredicate/CPCompoundPredicate.j @@ -170,7 +170,7 @@ var CPCompoundPredicateType; switch (_type) { - case CPNotPredicateType: result += "NOT %s" + [args objectAtIndex:0]; + case CPNotPredicateType: result += "NOT " + [args objectAtIndex:0]; break; case CPAndPredicateType: result += [args objectAtIndex:0];