From e6d117209604a39e73bc90f61929363c36ff1592 Mon Sep 17 00:00:00 2001 From: Greg Lehey Date: Fri, 11 May 2001 07:06:06 +0000 Subject: [PATCH] Fix world-breaking typo in previous commit. --- sys/dev/wi/if_wi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c index ea33e57c3b9..2ae8fd1a1ac 100644 --- a/sys/dev/wi/if_wi.c +++ b/sys/dev/wi/if_wi.c @@ -434,7 +434,7 @@ wi_generic_attach(device_t dev) */ mac.wi_type = WI_RID_MAC_NODE; mac.wi_len = 4; - wi_read_record(sc, (struct wi_ltv_gen *)&mac)); + wi_read_record(sc, (struct wi_ltv_gen *)&mac); if ((error = wi_read_record(sc, (struct wi_ltv_gen *)&mac)) != 0) { device_printf(dev, "mac read failed %d\n", error); wi_free(dev);