mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-27 03:30:06 +01:00
xfree86: use %zu to format size_t arguments
This commit is contained in:
parent
17c8cb5099
commit
a00dbd0015
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ xf86GetAGPInfo(int screenNum)
|
|||
info->systemPages = agpinf.pg_system;
|
||||
info->usedPages = agpinf.pg_used;
|
||||
|
||||
xf86DrvMsg(screenNum, X_INFO, "Kernel reported %d total, %d used\n", agpinf.pg_total, agpinf.pg_used);
|
||||
xf86DrvMsg(screenNum, X_INFO, "Kernel reported %zu total, %zu used\n", agpinf.pg_total, agpinf.pg_used);
|
||||
|
||||
return info;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue