aboutsummaryrefslogtreecommitdiffstats
path: root/Source/NSMutableArray-MultipleSort.m
diff options
context:
space:
mode:
Diffstat (limited to 'Source/NSMutableArray-MultipleSort.m')
-rw-r--r--Source/NSMutableArray-MultipleSort.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/NSMutableArray-MultipleSort.m b/Source/NSMutableArray-MultipleSort.m
index e76f1409..55a55962 100644
--- a/Source/NSMutableArray-MultipleSort.m
+++ b/Source/NSMutableArray-MultipleSort.m
@@ -51,7 +51,7 @@
[array1 replaceObjectAtIndex: d withObject: a1];
[a1 release];
va_start(argumentList, array1);
- while (eachObject = va_arg(argumentList, id)) {
+ while ((eachObject = va_arg(argumentList, id))) {
id ax = [eachObject objectAtIndex:d+stride];
id bx = [eachObject objectAtIndex:d];
[ax retain];