diff options
author | Miguel Figueiredo <elmig@debianpt.org> | 2013-06-04 19:54:29 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-06-04 19:54:29 +0200 |
commit | 21fff41626efc52861648edfe00c6ceecaa3a59c (patch) | |
tree | 946944e8f31accb6027cc25919070117b3b0b2c7 /vm | |
parent | e124fdce292d027b6b57cd10be41c37624313a90 (diff) |
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.
Diffstat (limited to 'vm')
-rw-r--r-- | vm/vm_resident.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |