mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-25 21:02:21 +00:00
Fix "warning: passing argument 1 of 'pixman_fill' from incompatible pointer type".
This commit is contained in:
parent
c448460fdc
commit
60f64af075
1 changed files with 1 additions and 1 deletions
|
|
@ -227,7 +227,7 @@ fbFillRegionSolid (DrawablePtr pDrawable,
|
|||
while (n--)
|
||||
{
|
||||
#ifndef FB_ACCESS_WRAPPER
|
||||
if (!try_mmx || !pixman_fill (dst, dstStride, dstBpp,
|
||||
if (!try_mmx || !pixman_fill ((uint32_t *)dst, dstStride, dstBpp,
|
||||
pbox->x1 + dstXoff, pbox->y1 + dstYoff,
|
||||
(pbox->x2 - pbox->x1),
|
||||
(pbox->y2 - pbox->y1),
|
||||
|
|
|
|||
Loading…
Reference in a new issue