diff -r 2eb229411d73 -r b0affce7beb1 Source/GGBUtils.m --- a/Source/GGBUtils.m Mon Jul 21 17:32:21 2008 -0700 +++ b/Source/GGBUtils.m Tue Mar 10 22:36:23 2009 -0700 @@ -34,7 +34,7 @@ void setObjCopy( id *variable, id newValue ) { if( *variable != newValue ) { - [*variable release]; + [(id)*variable release]; *variable = [(id)newValue copy]; } }