From 0b2de1b550db093ace9067015042a01d0d2d0e44 Mon Sep 17 00:00:00 2001 From: Kevin Lo Date: Thu, 21 Jun 2018 05:41:55 +0000 Subject: Add missing comma. This fixes compilation if we enable VMM_DEBUG macro. ok deraadt@ --- sys/arch/amd64/amd64/vmm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/arch') diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c index 56e08db99d5..2e3348210a3 100644 --- a/sys/arch/amd64/amd64/vmm.c +++ b/sys/arch/amd64/amd64/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.200 2018/06/05 06:39:10 guenther Exp $ */ +/* $OpenBSD: vmm.c,v 1.201 2018/06/21 05:41:54 kevlo Exp $ */ /* * Copyright (c) 2014 Mike Larkin * @@ -3829,13 +3829,13 @@ vmm_fpurestore(struct vcpu *vcpu) if (vcpu->vc_fpuinited) { /* Restore guest XCR0 and FPU context */ if (vcpu->vc_gueststate.vg_xcr0 & ~xsave_mask) { - DPRINTF("%s: guest attempted to set invalid %s\n" + DPRINTF("%s: guest attempted to set invalid %s\n", __func__, "bits in xcr0"); return EINVAL; } if (xrstor_user(&vcpu->vc_g_fpu, xsave_mask)) { - DPRINTF("%s: guest attempted to set invalid %s\n" + DPRINTF("%s: guest attempted to set invalid %s\n", __func__, "xsave/xrstor state"); return EINVAL; } -- cgit v1.2.3