From: Wei Yongjun Date: Thu, 11 Feb 2010 03:12:07 +0000 (+0800) Subject: KVM: x86 emulator: code style cleanup X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=1d327eac3c9a8b170d68df44957d82bdbd263c53;p=deliverable%2Flinux.git KVM: x86 emulator: code style cleanup Just remove redundant semicolon. Signed-off-by: Wei Yongjun Signed-off-by: Avi Kivity --- 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; }