From: guenther Date: Fri, 28 Jul 2023 06:36:16 +0000 (+0000) Subject: Include a newline in a DPRINTF() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b570db1379a772c148a3d4b3de90e9c3432eafa8;p=openbsd Include a newline in a DPRINTF() --- 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); }