Skip to content

Commit

Permalink
fixed type error, non mutable version was being set to mutable.
Browse files Browse the repository at this point in the history
  • Loading branch information
kognate committed Nov 22, 2011
1 parent 155c03d commit 242a800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MiscMerge/MiscMergeExpression.m
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ - (id)initWithExpressions:(NSArray *)list
{
self = [super init];
if ( self ) {
expressions = [list retain];
expressions = [list mutableCopy];
}
return self;
}
Expand Down

0 comments on commit 242a800

Please sign in to comment.