summaryrefslogtreecommitdiff
path: root/MLKCompiledClosure.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-10-04 16:49:19 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-10-04 16:49:19 +0200
commit38e6ddffecf15880ad9bcdfbff097565fca70792 (patch)
treee158f905c7b17cf3ad0e7f2cbeb11f8504609b17 /MLKCompiledClosure.m
parentc23fbcfb37bed1580d94706b68920498365ffe3c (diff)
Various cleanups.
Diffstat (limited to 'MLKCompiledClosure.m')
-rw-r--r--MLKCompiledClosure.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKCompiledClosure.m b/MLKCompiledClosure.m
index 4a59f7d..bb1e9e6 100644
--- a/MLKCompiledClosure.m
+++ b/MLKCompiledClosure.m
@@ -113,7 +113,7 @@
if (return_values)
{
MLKCons *values = [return_values cdr];
- return (values ? [values array] : [NSArray array]);
+ return (values ? (id)[values array] : (id)[NSArray array]);
}
else
{