Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ebb0e6... Commit: ebb0e6264c7a65c51feb3575e9edb58eab0cf469 Parent: ff4b9df877b30b8a371d706d3552999dee450738 Author: Avi Kivity <avi@qumranet.com> AuthorDate: Tue May 20 16:21:58 2008 +0300 Committer: Avi Kivity <avi@qumranet.com> CommitDate: Fri Jun 6 21:36:20 2008 +0300 KVM: MMU: Fix printk() format string Signed-off-by: Avi Kivity <avi@qumranet.com> --- arch/x86/kvm/paging_tmpl.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h index 156fe10..934c7b6 100644 --- a/arch/x86/kvm/paging_tmpl.h +++ b/arch/x86/kvm/paging_tmpl.h @@ -418,7 +418,7 @@ static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr, /* mmio */ if (is_error_pfn(pfn)) { - pgprintk("gfn %x is mmio\n", walker.gfn); + pgprintk("gfn %lx is mmio\n", walker.gfn); kvm_release_pfn_clean(pfn); return 1; } -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
