aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>2001-03-01 03:21:16 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>2001-03-01 03:21:16 +0000
commit2b99d4f0132b148d5fce680254f683d7b4ce42eb (patch)
tree4487861f02b752ec95ec45d5721fd0b84ecbf6d6 /sys
parent6e5c5328c4942c39b0f484b2b968a26a7da1e65d (diff)
downloadsrc-2b99d4f0132b148d5fce680254f683d7b4ce42eb.tar.gz
src-2b99d4f0132b148d5fce680254f683d7b4ce42eb.zip
In ascpoll, return revents, not 0.
Notes
Notes: svn path=/head/; revision=73248
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/isa/asc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/isa/asc.c b/sys/i386/isa/asc.c
index eabaff8ae13c..b3e7b8dcd2cf 100644
--- a/sys/i386/isa/asc.c
+++ b/sys/i386/isa/asc.c
@@ -880,5 +880,5 @@ ascpoll(dev_t dev, int events, struct proc *p)
}
}
splx(sps);
- return 0;
+ return (revents);
}