diff options
author | Wei Yongjun | 2010-02-11 11:12:07 +0800 |
---|---|---|
committer | Marcelo Tosatti | 2010-03-01 12:36:12 -0300 |
commit | 1d327eac3c9a8b170d68df44957d82bdbd263c53 (patch) | |
tree | 0cd02ff1479ebcd87da8e137b7c9af514465f0a5 /arch | |
parent | db358796d95886f9715d1c91e9ae866c005511d7 (diff) |
KVM: x86 emulator: code style cleanup
Just remove redundant semicolon.
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kvm/emulate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index c2de9f03da84..dd1b93522379 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c @@ -1016,7 +1016,7 @@ done_prefixes: } if (mode == X86EMUL_MODE_PROT64 && (c->d & No64)) { - kvm_report_emulation_failure(ctxt->vcpu, "invalid x86/64 instruction");; + kvm_report_emulation_failure(ctxt->vcpu, "invalid x86/64 instruction"); return -1; } |