summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-26 17:44:44 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-26 17:44:44 +0000
commit90fc0e7660a53b884c7eb6c4d8581aa881c587ae (patch)
treef426cfcc066db0b4f10bb95a804bd6aa92dfe08f
parent8c95acf90ac1b89aa2de11abd91bd9a8e68b9874 (diff)
quiet a warning
-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