diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-25 19:36:14 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-25 19:36:14 +0000 |
commit | caf9f53f410d51c278a807519e67b68d0dc51a02 (patch) | |
tree | 6801f1142efe1bdf1a4e82fb03247a6ed089542f /sys/dev | |
parent | 3054ecc7c04d75db867453fd00496d22a10bf618 (diff) |
Fix this right this time. ugh.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/if_wi.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/ic/if_wi.c b/sys/dev/ic/if_wi.c index 5803b01e372..cc441bd687a 100644 --- a/sys/dev/ic/if_wi.c +++ b/sys/dev/ic/if_wi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi.c,v 1.13 2001/06/25 19:33:09 drahn Exp $ */ +/* $OpenBSD: if_wi.c,v 1.14 2001/06/25 19:36:13 drahn Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -120,7 +120,7 @@ u_int32_t widebug = WIDEBUG; #if !defined(lint) && !defined(__OpenBSD__) static const char rcsid[] = - "$OpenBSD: if_wi.c,v 1.13 2001/06/25 19:33:09 drahn Exp $"; + "$OpenBSD: if_wi.c,v 1.14 2001/06/25 19:36:13 drahn Exp $"; #endif /* lint */ #ifdef foo @@ -598,7 +598,7 @@ wi_read_record(sc, ltv) struct wi_ltv_gen *ltv; { u_int8_t *ptr; - int i, len, code; + int len, code; struct wi_ltv_gen *oltv, p2ltv; if (sc->sc_prism2) { @@ -696,6 +696,7 @@ wi_write_record(sc, ltv) struct wi_ltv_gen *ltv; { u_int8_t *ptr; + int i; struct wi_ltv_gen p2ltv; if (sc->sc_prism2) { |