diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2019-03-10 07:44:18 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2019-03-10 07:44:18 +0000 |
commit | 619d0126566ebac3352d5ffae3571e05df633990 (patch) | |
tree | f92ba6fe247512f0af563efe1b2d7b29165c3158 | |
parent | 626d6fc07620486bab7bc50c86bdf461a162f585 (diff) |
missing newline in a printf
-rw-r--r-- | sys/arch/amd64/amd64/vmm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c index bb783f49e4a..fa95a273200 100644 --- a/sys/arch/amd64/amd64/vmm.c +++ b/sys/arch/amd64/amd64/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.230 2019/03/10 07:35:33 mlarkin Exp $ */ +/* $OpenBSD: vmm.c,v 1.231 2019/03/10 07:44:17 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org> * @@ -2559,7 +2559,7 @@ vcpu_reset_regs_vmx(struct vcpu *vcpu, struct vcpu_reg_state *vrs) /* Page walk length 4 supported */ eptp |= ((IA32_EPT_PAGE_WALK_LENGTH - 1) << 3); } else { - DPRINTF("EPT page walk length 4 not supported"); + DPRINTF("EPT page walk length 4 not supported\n"); ret = EINVAL; goto exit; } |