Fix signedness issue in fb area_intersect code

This commit is contained in:
Charles Brej 2008-10-03 12:30:31 -04:00 committed by Ray Strode
parent 088b03a414
commit 4cd8fd2d01

View file

@ -690,7 +690,7 @@ ply_frame_buffer_area_intersect (ply_frame_buffer_area_t *area1,
ply_frame_buffer_area_t *area2,
ply_frame_buffer_area_t *result)
{
unsigned long x1, y1, x2, y2;
long x1, y1, x2, y2;
long width, height;
if (area1->width == 0)