mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
radeon: fix printf format specifier.
From glibc printf(3):
Z A nonstandard synonym for z that predates the appearance of z.
Do not use in new code.
Z may not exist on non-glibc systems. Prefer the standard symbol.
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
parent
f6a6da8131
commit
a2ddb710fd
1 changed files with 1 additions and 1 deletions
|
|
@ -217,7 +217,7 @@ void radeonRefillCurrentDmaRegion(radeonContextPtr rmesa, int size)
|
||||||
if (size > rmesa->dma.minimum_size)
|
if (size > rmesa->dma.minimum_size)
|
||||||
rmesa->dma.minimum_size = (size + 15) & (~15);
|
rmesa->dma.minimum_size = (size + 15) & (~15);
|
||||||
|
|
||||||
radeon_print(RADEON_DMA, RADEON_NORMAL, "%s size %d minimum_size %Zi\n",
|
radeon_print(RADEON_DMA, RADEON_NORMAL, "%s size %d minimum_size %zi\n",
|
||||||
__func__, size, rmesa->dma.minimum_size);
|
__func__, size, rmesa->dma.minimum_size);
|
||||||
|
|
||||||
if (is_empty_list(&rmesa->dma.free)
|
if (is_empty_list(&rmesa->dma.free)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue