diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2007-12-02 22:18:07 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2007-12-02 22:18:07 +0000 |
commit | 0c9ad058860bbfbedec494dace763f1ba13b522e (patch) | |
tree | ee31f1ebe7415f1538e7b83cddad2d04805ba981 /sys/dev/acpi | |
parent | 73017be9fbeba967486353fe132d3649c637fce0 (diff) |
fix the trailing space for real now.
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/acpi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index 8eab2dc119a..a8d0d9a2033 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi.c,v 1.108 2007/12/02 20:44:33 fgsch Exp $ */ +/* $OpenBSD: acpi.c,v 1.109 2007/12/02 22:18:06 fgsch Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> @@ -551,14 +551,14 @@ acpi_attach(struct device *parent, struct device *self, void *aux) printf("%s: tables", DEVNAME(sc)); SIMPLEQ_FOREACH(entry, &sc->sc_tables, q_next) { - printf(" %.4s ", entry->q_table); + printf(" %.4s", entry->q_table); } printf("\n"); /* Display wakeup devices and lowest S-state */ printf("%s: wakeup devices", DEVNAME(sc)); SIMPLEQ_FOREACH(wentry, &sc->sc_wakedevs, q_next) { - printf(" %.4s(S%d) ", wentry->q_node->name, + printf(" %.4s(S%d)", wentry->q_node->name, wentry->q_state); } printf("\n"); |