diff options
author | Dave Voutila <dv@cvs.openbsd.org> | 2022-02-09 16:03:54 +0000 |
---|---|---|
committer | Dave Voutila <dv@cvs.openbsd.org> | 2022-02-09 16:03:54 +0000 |
commit | 91b444994480fefd387b7620431ad8c771f6a453 (patch) | |
tree | fa1f35cde831cc504c1c9181be2378d29c48f8c0 /sys/dev | |
parent | 25de92fabe9b82b421019eb4b1477bbebfb05ff4 (diff) |
add newline to acpitz(4) attach condition
ok miod@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/acpi/acpitz.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpitz.c b/sys/dev/acpi/acpitz.c index af27555c9ad..c4e166dd539 100644 --- a/sys/dev/acpi/acpitz.c +++ b/sys/dev/acpi/acpitz.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpitz.c,v 1.56 2021/03/10 21:49:55 patrick Exp $ */ +/* $OpenBSD: acpitz.c,v 1.57 2022/02/09 16:03:53 dv Exp $ */ /* * Copyright (c) 2006 Can Erkin Acar <canacar@openbsd.org> * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> @@ -214,7 +214,8 @@ acpitz_attach(struct device *parent, struct device *self, void *aux) sc->sc_lasttmp = -1; if ((sc->sc_tmp = acpitz_gettempreading(sc, "_TMP")) == -1) { - dnprintf(10, ": failed to read _TMP\n"); + dnprintf(10, ": failed to read _TMP"); + printf("\n"); return; } |