In ascpoll, return revents, not 0.

This commit is contained in:
Jonathan Lemon 2001-03-01 03:21:16 +00:00
parent 6e5c5328c4
commit 2b99d4f013
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=73248

View File

@ -880,5 +880,5 @@ ascpoll(dev_t dev, int events, struct proc *p)
}
}
splx(sps);
return 0;
return (revents);
}