Commit ebb0e626 authored by Avi Kivity's avatar Avi Kivity

KVM: MMU: Fix printk() format string

Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent ff4b9df8
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment