diff options
author | Jes Sorensen <jes.sorensen@gmail.com> | 2009-06-08 12:29:23 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-06-08 14:07:42 +0300 |
commit | 1561929db2a27fc74f461f2bf4347a90e37426e7 (patch) | |
tree | c97ad85f38f3a9e14f12f0ba5ae5437e80579025 /target-ia64 | |
parent | Flush icache after dma operations for ia64 (diff) | |
download | qemu-kvm-1561929db2a27fc74f461f2bf4347a90e37426e7.tar.gz qemu-kvm-1561929db2a27fc74f461f2bf4347a90e37426e7.tar.bz2 qemu-kvm-1561929db2a27fc74f461f2bf4347a90e37426e7.zip |
build-fix typo in target-ia64/libkvm.c
Fix typo s/vcp/vcpu/
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'target-ia64')
-rw-r--r-- | target-ia64/libkvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-ia64/libkvm.c b/target-ia64/libkvm.c index 168721ea9..bf9dded8b 100644 --- a/target-ia64/libkvm.c +++ b/target-ia64/libkvm.c @@ -49,7 +49,7 @@ int kvm_arch_run(kvm_vcpu_context_t vcpu) { int r = 0; - switch (vcp->run->exit_reason) { + switch (vcpu->run->exit_reason) { default: r = 1; break; |