summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-03-21 03:56:50 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-03-21 03:56:50 +0000
commita1d0d0a34bcf83df23b8281cf127c28204b709df (patch)
treef3cea30bc32ed011aadb94acabc3a6e4aacf7a32
parentf6aa25ffe534c8624373d9d3b95bd53b4c058fd5 (diff)
Correct the (normally ignored) argument to SLIST_HEAD_INITIALIZER()
-rw-r--r--sys/arch/sparc64/sparc64/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/sparc64/machdep.c b/sys/arch/sparc64/sparc64/machdep.c
index 23ff1327fd9..445f86c341e 100644
--- a/sys/arch/sparc64/sparc64/machdep.c
+++ b/sys/arch/sparc64/sparc64/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.150 2014/03/13 03:52:56 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.151 2014/03/21 03:56:49 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.108 2001/07/24 19:30:14 eeh Exp $ */
/*-
@@ -2104,7 +2104,7 @@ struct blink_led_softc {
SLIST_HEAD(, blink_led) bls_head;
int bls_on;
struct timeout bls_to;
-} blink_sc = { SLIST_HEAD_INITIALIZER(bls_head), 0 };
+} blink_sc = { SLIST_HEAD_INITIALIZER(blink_sc.bls_head), 0 };
void
blink_led_register(struct blink_led *l)