From 21fff41626efc52861648edfe00c6ceecaa3a59c Mon Sep 17 00:00:00 2001 From: Miguel Figueiredo Date: Tue, 4 Jun 2013 19:54:29 +0200 Subject: Fix format warnings * vm/vm_resident.c (pmap_startup): Fix printf format. * xen/block.c (hyp_block_init, device_write): Likewise. * xen/net.c (hyp_net_init): Likewise. --- vm/vm_resident.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm/vm_resident.c') diff --git a/vm/vm_resident.c b/vm/vm_resident.c index 7cf4fb1..d2edf5a 100644 --- a/vm/vm_resident.c +++ b/vm/vm_resident.c @@ -395,7 +395,7 @@ void pmap_startup( while (pmap_next_page(&paddr)) i++; if (i) - printf("%d memory page(s) left away\n", i); + printf("%u memory page(s) left away\n", i); /* * Release pages in reverse order so that physical pages -- cgit v1.2.3