mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 10:08:08 +02:00
gallium: use unsigned long to silence warnings with 64-bit build
This commit is contained in:
parent
3377cd535e
commit
799f55803d
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ __memcpy(void *to, const void *from, size_t n)
|
|||
static void *
|
||||
do_memcpy(void *dest, const void *src, size_t n)
|
||||
{
|
||||
if ((((unsigned) src) & 63) || (((unsigned) dest) & 63)) {
|
||||
if ((((unsigned long) src) & 63) || (((unsigned long) dest) & 63)) {
|
||||
return __memcpy(dest, src, n);
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue