diff options
| author | mycroft <mycroft@NetBSD.org> | 1994-05-05 08:31:44 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1994-05-05 08:31:44 +0000 |
| commit | fcdc2b3f3f1b49a5f2d98db9bea44fd4dcdb6501 (patch) | |
| tree | 081f3f0fbf1be228664143983659857082073030 /sys/dev | |
| parent | 5f478330e81e36cf19f87f01f0bcb53e94ab8f3a (diff) | |
Remove now-bogus cast.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/isa/wt.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } /* |
