diff options
author | Wei Yongjun <yjwei@cn.fujitsu.com> | 2010-02-10 22:12:07 -0500 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2010-03-01 10:36:12 -0500 |
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: | |||
1016 | } | 1016 | } |
1017 | 1017 | ||
1018 | if (mode == X86EMUL_MODE_PROT64 && (c->d & No64)) { | 1018 | if (mode == X86EMUL_MODE_PROT64 && (c->d & No64)) { |
1019 | kvm_report_emulation_failure(ctxt->vcpu, "invalid x86/64 instruction");; | 1019 | kvm_report_emulation_failure(ctxt->vcpu, "invalid x86/64 instruction"); |
1020 | return -1; | 1020 | return -1; |
1021 | } | 1021 | } |
1022 | 1022 | ||