Compilation error while enabling CC_SPRITE_DEBUG_DRAW

At CCSprite.cpp line 602. Fix:
#if CC_SPRITE_DEBUG_DRAW
CGSize s = m_tContentSize;
—>// CGSize s = [self contentSize];
CGPoint vertices[4]={
ccp(0,0),ccp(s.width,0),
ccp(s.width,s.height),ccp(0,s.height),
};
—> ccDrawPoly(vertices, 4, true);
#endif // CC_SPRITE_DEBUG_DRAW

Thanks! It’s our fault, it isn’t covered by test cases.
It’s fixed in bug #263