Skip to content

Commit a1923dd

Browse files
binbinwu1lijinxia
authored andcommitted
hv: add a missing semicolon in vmexit.c
Signed-off-by: Binbin Wu <binbin.wu@intel.com> Reviewed-by: Jason Chen CJ <jason.cj.chen@intel.com>
1 parent 6788c09 commit a1923dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hypervisor/arch/x86/vmexit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ int cr_access_vmexit_handler(struct vcpu *vcpu)
265265
&vcpu->arch_vcpu.contexts[vcpu->arch_vcpu.cur_context];
266266
int idx = VM_EXIT_CR_ACCESS_REG_IDX(vcpu->arch_vcpu.exit_qualification);
267267

268-
ASSERT(idx>=0 && idx<=15, "index out of range")
268+
ASSERT(idx>=0 && idx<=15, "index out of range");
269269
regptr = cur_context->guest_cpu_regs.longs + idx;
270270

271271
switch ((VM_EXIT_CR_ACCESS_ACCESS_TYPE

0 commit comments

Comments
 (0)