summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorKevin Lo <kevlo@cvs.openbsd.org>2018-06-21 05:41:55 +0000
committerKevin Lo <kevlo@cvs.openbsd.org>2018-06-21 05:41:55 +0000
commit0b2de1b550db093ace9067015042a01d0d2d0e44 (patch)
tree63b8be894f9c3e9112234454e6b6eaf3909183b5 /sys/arch
parentd4bd76807e6d4dc86020e7ecd56467ce0fc55c67 (diff)
Add missing comma. This fixes compilation if we enable VMM_DEBUG macro.
ok deraadt@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/amd64/vmm.c6
1 files changed, 3 insertions, 3 deletions
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 <mlarkin@openbsd.org>
*
@@ -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;
}