From b570db1379a772c148a3d4b3de90e9c3432eafa8 Mon Sep 17 00:00:00 2001 From: guenther Date: Fri, 28 Jul 2023 06:36:16 +0000 Subject: [PATCH] Include a newline in a DPRINTF() --- sys/arch/amd64/amd64/cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/amd64/amd64/cpu.c b/sys/arch/amd64/amd64/cpu.c index 67298c22f48..542d961d050 100644 --- a/sys/arch/amd64/amd64/cpu.c +++ b/sys/arch/amd64/amd64/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.173 2023/07/25 04:42:00 deraadt Exp $ */ +/* $OpenBSD: cpu.c,v 1.174 2023/07/28 06:36:16 guenther Exp $ */ /* $NetBSD: cpu.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $ */ /*- @@ -222,7 +222,7 @@ replacemeltdown(void) /* enable reuse of PCID for U-K page tables */ if (pmap_use_pcid) { extern long _pcid_set_reuse; - DPRINTF("%s: codepatching PCID use", __func__); + DPRINTF("%s: codepatching PCID use\n", __func__); codepatch_replace(CPTAG_PCID_SET_REUSE, &_pcid_set_reuse, PCID_SET_REUSE_SIZE); } -- 2.20.1