summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-03-02 08:04:05 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-03-02 08:04:05 +0000
commit6af6b3b76f04d736f591134b4842c45f7f3d1656 (patch)
tree289d47185781ddf154b19a85d165748a5e8df9ae /sys
parent1ad0dbd426cf5ec858e6fdc640e4576ee8a87364 (diff)
Casting magic to avoid warnings on alpha.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/tty.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index 3437a0537dc..96466d497d6 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty.c,v 1.42 2001/03/01 20:54:34 provos Exp $ */
+/* $OpenBSD: tty.c,v 1.43 2001/03/02 08:04:04 art Exp $ */
/* $NetBSD: tty.c,v 1.68.4.2 1996/06/06 16:04:52 thorpej Exp $ */
/*-
@@ -1080,7 +1080,7 @@ ttkqfilter(dev, kn)
return (1);
}
- kn->kn_hook = (caddr_t)dev;
+ kn->kn_hook = (caddr_t)((u_long)dev);
s = spltty();
SLIST_INSERT_HEAD(klist, kn, kn_selnext);
@@ -1092,7 +1092,7 @@ ttkqfilter(dev, kn)
void
filt_ttyrdetach(struct knote *kn)
{
- dev_t dev = (dev_t)kn->kn_hook;
+ dev_t dev = (dev_t)((u_long)kn->kn_hook);
struct tty *tp = (*cdevsw[major(dev)].d_tty)(dev);
int s = spltty();
@@ -1103,7 +1103,7 @@ filt_ttyrdetach(struct knote *kn)
int
filt_ttyread(struct knote *kn, long hint)
{
- dev_t dev = (dev_t)kn->kn_hook;
+ dev_t dev = (dev_t)((u_long)kn->kn_hook);
struct tty *tp = (*cdevsw[major(dev)].d_tty)(dev);
kn->kn_data = ttnread(tp);
@@ -1117,7 +1117,7 @@ filt_ttyread(struct knote *kn, long hint)
void
filt_ttywdetach(struct knote *kn)
{
- dev_t dev = (dev_t)kn->kn_hook;
+ dev_t dev = (dev_t)((u_long)kn->kn_hook);
struct tty *tp = (*cdevsw[major(dev)].d_tty)(dev);
int s = spltty();
@@ -1130,7 +1130,7 @@ filt_ttywrite(kn, hint)
struct knote *kn;
long hint;
{
- dev_t dev = (dev_t)kn->kn_hook;
+ dev_t dev = (dev_t)((u_long)kn->kn_hook);
struct tty *tp = (*cdevsw[major(dev)].d_tty)(dev);
kn->kn_data = tp->t_outq.c_cc;