mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-19 04:40:27 +01:00
[pixman] Don't cast pointers to integers
This causes warnings on 64-bit platforms that may indicate very serious problems. Fortunately, not in this case.
This commit is contained in:
parent
abd16e47d6
commit
b29cc61fac
1 changed files with 1 additions and 1 deletions
|
|
@ -2401,7 +2401,7 @@ fbCopyAreammx (FbPixels *pSrc,
|
|||
d += 2;
|
||||
}
|
||||
|
||||
while (w >= 4 && ((unsigned int)d & 7))
|
||||
while (w >= 4 && ((unsigned long)d & 7))
|
||||
{
|
||||
*(CARD32 *)d = *(CARD32 *)s;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue