diff options
author | dillon <dillon@FreeBSD.org> | 1999-01-28 17:32:05 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 1999-01-28 17:32:05 +0000 |
commit | ca558df378372b5884ff8069ed7ca0828d9b8de1 (patch) | |
tree | 437f037c49b94ed358c6bed90d5be63adb743843 /sys/dev/de | |
parent | 789691e908f6bc573894f86b17cf9616bce158c7 (diff) | |
download | FreeBSD-src-ca558df378372b5884ff8069ed7ca0828d9b8de1.zip FreeBSD-src-ca558df378372b5884ff8069ed7ca0828d9b8de1.tar.gz |
Fix warnings related to -Wall -Wcast-qual
Diffstat (limited to 'sys/dev/de')
-rw-r--r-- | sys/dev/de/if_de.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/de/if_de.c b/sys/dev/de/if_de.c index 1d1de89..f6d120d 100644 --- a/sys/dev/de/if_de.c +++ b/sys/dev/de/if_de.c @@ -1,5 +1,5 @@ /* $NetBSD: if_de.c,v 1.80 1998/09/25 18:06:53 matt Exp $ */ -/* $Id: if_de.c,v 1.94 1999/01/27 23:45:41 dillon Exp $ */ +/* $Id: if_de.c,v 1.95 1999/01/28 00:57:52 dillon Exp $ */ /*- * Copyright (c) 1994-1997 Matt Thomas (matt@3am-software.com) @@ -2412,7 +2412,7 @@ tulip_srom_decode( /* * Save the hardware address. */ - bcopy((v_caddr_t) shp->sh_ieee802_address, (v_caddr_t) sc->tulip_enaddr, 6); + bcopy((c_caddr_t) shp->sh_ieee802_address, (v_caddr_t) sc->tulip_enaddr, 6); /* * If this is a multiple port card, add the adapter index to the last * byte of the hardware address. (if it isn't multiport, adding 0 |