summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2013-12-17 15:18:29 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2013-12-17 15:18:29 +0000
commitf5a9b61c0c4507867b566d1a536ef4194f1a1bb4 (patch)
tree2c1d99b89667cae3c854522ad21af91938549bbd /sys
parentfaece19f6ce87f15f396184bc01305327107dc81 (diff)
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) ? "" : ",");