diff options
author | 2013-12-17 15:18:28 +0000 | |
---|---|---|
committer | 2013-12-17 15:18:28 +0000 | |
commit | a77309d288e0933448d113bd8295bec205449894 (patch) | |
tree | 00bdcb05c925869b539d9753f96382b9a2d7ef83 /sys | |
parent | don't do a timeout+task song and dance, instead use DVACT_WAKEUP directly. (diff) | |
download | wireguard-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.c | 4 |
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) ? "" : ","); |