From c2538e82b936f021710c766092bc38b090f54cc3 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Thu, 12 Aug 2021 15:16:24 +0000 Subject: Add missing newlines to some printfs in est_acpi_pss_changed() ok jsg --- sys/arch/i386/i386/est.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/arch/i386') diff --git a/sys/arch/i386/i386/est.c b/sys/arch/i386/i386/est.c index 2f4314c6e70..7f2fd0147a3 100644 --- a/sys/arch/i386/i386/est.c +++ b/sys/arch/i386/i386/est.c @@ -1,4 +1,4 @@ -/* $OpenBSD: est.c,v 1.52 2018/03/31 13:45:03 bluhm Exp $ */ +/* $OpenBSD: est.c,v 1.53 2021/08/12 15:16:23 tb Exp $ */ /* * Copyright (c) 2003 Michael Eriksson. * All rights reserved. @@ -1017,14 +1017,14 @@ est_acpi_pss_changed(struct acpicpu_pss *pss, int npss) if ((acpilist = malloc(sizeof(struct fqlist), M_DEVBUF, M_NOWAIT)) == NULL) { printf("est_acpi_pss_changed: cannot allocate memory for new " - "est state"); + "est state\n"); return; } if ((acpilist->table = mallocarray(npss, sizeof(struct est_op), M_DEVBUF, M_NOWAIT)) == NULL) { printf("est_acpi_pss_changed: cannot allocate memory for new " - "operating points"); + "operating points\n"); free(acpilist, M_DEVBUF, sizeof(*acpilist)); return; } -- cgit v1.2.3