summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2013-12-17 15:18:28 +0000
committerderaadt <deraadt@openbsd.org>2013-12-17 15:18:28 +0000
commita77309d288e0933448d113bd8295bec205449894 (patch)
tree00bdcb05c925869b539d9753f96382b9a2d7ef83 /sys
parentdon't do a timeout+task song and dance, instead use DVACT_WAKEUP directly. (diff)
downloadwireguard-openbsd-a77309d288e0933448d113bd8295bec205449894.tar.xz
wireguard-openbsd-a77309d288e0933448d113bd8295bec205449894.zip
do not put a second : in a dmesg line, use , instead
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/acpi/acpipwrres.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpipwrres.c b/sys/dev/acpi/acpipwrres.c
index 56c4c89103b..275e699ee33 100644
--- a/sys/dev/acpi/acpipwrres.c
+++ b/sys/dev/acpi/acpipwrres.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpipwrres.c,v 1.5 2013/11/06 10:40:36 mpi Exp $ */
+/* $OpenBSD: acpipwrres.c,v 1.6 2013/12/17 15:18:28 deraadt Exp $ */
/*
* Copyright (c) 2013 Martin Pieuchot <mpi@openbsd.org>
@@ -135,7 +135,7 @@ acpipwrres_attach(struct device *parent, struct device *self, void *aux)
DPRINTF(("%s", DEVNAME(sc)));
if (!SIMPLEQ_EMPTY(&sc->sc_cons)) {
- printf(": resource for");
+ printf(", resource for");
SIMPLEQ_FOREACH(cons, &sc->sc_cons, cs_next)
printf(" %s%s", cons->cs_node->name,
(SIMPLEQ_NEXT(cons, cs_next) == NULL) ? "" : ",");