spider screen_saver: fixes 64 bit warnings

This commit is contained in:
Jérôme Duval
2013-05-10 21:31:47 +02:00
parent f39eb5cf94
commit 847f1a92bd
+1 -1
View File
@@ -39,7 +39,7 @@ Polygon::Polygon(BRect bounds, BList points)
// destructor
Polygon::~Polygon()
{
while (point_vector* pv = (point_vector*)fPoints.RemoveItem(0L))
while (point_vector* pv = (point_vector*)fPoints.RemoveItem((int32)0))
delete pv;
}