diff options
author | archie <archie@FreeBSD.org> | 1998-12-10 01:52:16 +0000 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 1998-12-10 01:52:16 +0000 |
commit | 7e681e5e17b78a44b85222931bbfb452faaf4a08 (patch) | |
tree | 7ed07f3cbcec5dc006069348fd2b3c7932527655 /sys/dev/ie | |
parent | 02113f36ef21f4f409b841632021b53280743a2d (diff) | |
download | FreeBSD-src-7e681e5e17b78a44b85222931bbfb452faaf4a08.zip FreeBSD-src-7e681e5e17b78a44b85222931bbfb452faaf4a08.tar.gz |
Eliminate compiler warning.
Diffstat (limited to 'sys/dev/ie')
-rw-r--r-- | sys/dev/ie/if_ie.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c index 3f1ed13..4b22ae5 100644 --- a/sys/dev/ie/if_ie.c +++ b/sys/dev/ie/if_ie.c @@ -47,7 +47,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ie.c,v 1.56 1998/08/10 17:21:48 bde Exp $ + * $Id: if_ie.c,v 1.57 1998/10/22 05:58:39 bde Exp $ */ /* @@ -2261,7 +2261,9 @@ static int ieioctl(struct ifnet *ifp, u_long command, caddr_t data) { struct ifaddr *ifa = (struct ifaddr *) data; +#if defined(IPX) || defined(NS) struct ie_softc *ie = ifp->if_softc; +#endif struct ifreq *ifr = (struct ifreq *) data; int s, error = 0; |