mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-06 23:54:47 +00:00
xfree86: use %zu to format size_t arguments
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user