summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormlarkin <mlarkin@openbsd.org>2018-04-05 02:37:06 +0000
committermlarkin <mlarkin@openbsd.org>2018-04-05 02:37:06 +0000
commitf27190e50bef54c664e2399932fa1cd534e7f522 (patch)
tree84b4a7b140175721fd066f1cf4b779fe3cb2dad0
parentsync (diff)
downloadwireguard-openbsd-f27190e50bef54c664e2399932fa1cd534e7f522.tar.xz
wireguard-openbsd-f27190e50bef54c664e2399932fa1cd534e7f522.zip
typo in printf - was _PRO, should be _PR0
ok kettenis
-rw-r--r--sys/dev/acpi/acpitz.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpitz.c b/sys/dev/acpi/acpitz.c
index cc837e45953..af8bc5170ec 100644
--- a/sys/dev/acpi/acpitz.c
+++ b/sys/dev/acpi/acpitz.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpitz.c,v 1.52 2017/04/02 00:28:56 deraadt Exp $ */
+/* $OpenBSD: acpitz.c,v 1.53 2018/04/05 02:37:06 mlarkin Exp $ */
/*
* Copyright (c) 2006 Can Erkin Acar <canacar@openbsd.org>
* Copyright (c) 2005 Marco Peereboom <marco@openbsd.org>
@@ -308,7 +308,7 @@ acpitz_setfan(struct acpitz_softc *sc, int i, char *method)
node = aml_searchrel(sc->sc_devnode,
ref->v_string);
if (node == NULL) {
- printf("%s: %s[%d.%d] _PRO"
+ printf("%s: %s[%d.%d] _PR0"
" not a valid device\n",
DEVNAME(sc), name, x, y);
continue;
@@ -320,7 +320,7 @@ acpitz_setfan(struct acpitz_softc *sc, int i, char *method)
}
if (ref->type != AML_OBJTYPE_DEVICE &&
ref->type != AML_OBJTYPE_POWERRSRC) {
- printf("%s: %s[%d.%d] _PRO not a package\n",
+ printf("%s: %s[%d.%d] _PR0 not a package\n",
DEVNAME(sc), name, x, y);
continue;
}