From fcdc2b3f3f1b49a5f2d98db9bea44fd4dcdb6501 Mon Sep 17 00:00:00 2001 From: mycroft Date: Thu, 5 May 1994 08:31:44 +0000 Subject: Remove now-bogus cast. --- sys/dev/isa/wt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/isa/wt.c b/sys/dev/isa/wt.c index 335491d34b1..f8a66eef9fe 100644 --- a/sys/dev/isa/wt.c +++ b/sys/dev/isa/wt.c @@ -16,7 +16,7 @@ * This driver is derived from the old 386bsd Wangtek streamer tape driver, * made by Robert Baron at CMU, based on Intel sources. * - * $Id: wt.c,v 1.14 1994/05/05 05:37:09 cgd Exp $ + * $Id: wt.c,v 1.15 1994/05/05 08:31:44 mycroft Exp $ */ /* @@ -880,7 +880,7 @@ wtclock(sc) * Some controllers seem to lose dma interrupts too often. To make the * tape stream we need 1 tick timeout. */ - timeout(wttimer, (caddr_t)sc, (sc->flags & TPACTIVE) ? 1 : hz); + timeout(wttimer, sc, (sc->flags & TPACTIVE) ? 1 : hz); } /* -- cgit