sna: Eliminate a DBG compile warn for 32-bit builds

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2013-09-26 11:42:05 +01:00
parent 8ef851b223
commit 17f47afcbc
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ fbClipBoxes(const RegionRec *region, const BoxRec *box, const BoxRec **end)
}
DBG(("%s: c0=(%d, %d),(%d, %d) x %ld\n",
__FUNCTION__, c0->x1, c0->y1, c0->x2, c0->y2, c1 - c0));
__FUNCTION__, c0->x1, c0->y1, c0->x2, c0->y2, (long)(c1 - c0)));
*end = c1;
return c0;