summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/arch/mvme68k/stand/netboot/if_le.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/stand/netboot/if_le.c b/sys/arch/mvme68k/stand/netboot/if_le.c
index 0182852e840..36295a6e03c 100644
--- a/sys/arch/mvme68k/stand/netboot/if_le.c
+++ b/sys/arch/mvme68k/stand/netboot/if_le.c
@@ -1,4 +1,4 @@
-/* $Id: if_le.c,v 1.3 1995/11/07 08:51:02 deraadt Exp $ */
+/* $Id: if_le.c,v 1.4 1995/12/26 17:44:43 deraadt Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -350,7 +350,7 @@ le_put(desc, pkt, len)
while (tmd->tmd1_bits & LE_T1_OWN) {
printf("le%d: output buffer busy\n", desc->io_netif->nif_unit);
}
- bcopy(pkt, ler2->ler2_tbuf[le_softc.next_tmd], len);
+ bcopy(pkt, (void *)ler2->ler2_tbuf[le_softc.next_tmd], len);
if (len < 64)
tmd->tmd2 = -64;
else