dect
/
linux-2.6
Archived
13
0
Fork 0

KVM: MMU: Fix printk() format string

Signed-off-by: Avi Kivity <avi@qumranet.com>
This commit is contained in:
Avi Kivity 2008-05-20 16:21:58 +03:00
parent ff4b9df877
commit ebb0e6264c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}