summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Cristau <jcristau@debian.org>2009-01-11 08:36:16 +0100
committerJulien Cristau <jcristau@debian.org>2009-01-11 08:54:11 +0100
commita00dbd0015845e08ef2af9480cc3833819cf86f5 (patch)
tree49ca4357e6269daee5cb0f5df09793e28425b1e1
parent17c8cb50990a9ad20bbd3f8ce14c149dac9d72ad (diff)
xfree86: use %zu to format size_t arguments
-rw-r--r--hw/xfree86/os-support/linux/lnx_agp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/os-support/linux/lnx_agp.c b/hw/xfree86/os-support/linux/lnx_agp.c
index e5eb30c92..61437406d 100644
--- a/hw/xfree86/os-support/linux/lnx_agp.c
+++ b/hw/xfree86/os-support/linux/lnx_agp.c
@@ -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;
}