changeset 27 | b0affce7beb1 |
parent 21 | 2eb229411d73 |
1.1 --- a/Source/GGBUtils.m Mon Jul 21 17:32:21 2008 -0700 1.2 +++ b/Source/GGBUtils.m Tue Mar 10 22:36:23 2009 -0700 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 }