changeset 29 | 0b1c315ffc64 |
parent 21 | 2eb229411d73 |
1.1 --- a/Source/GGBUtils.m Mon Jul 21 17:32:21 2008 -0700 1.2 +++ b/Source/GGBUtils.m Sun Feb 06 16:31:03 2011 -0800 1.3 @@ -34,7 +34,7 @@ 1.4 void setObjCopy( id<NSCopying> *variable, id<NSCopying> newValue ) 1.5 { 1.6 if( *variable != newValue ) { 1.7 - [*variable release]; 1.8 + [(id)*variable release]; 1.9 *variable = [(id)newValue copy]; 1.10 } 1.11 }