1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Remove a gratutious cast.

This commit is contained in:
Jordan K. Hubbard 1995-03-04 21:14:19 +00:00
parent ca83dc2de1
commit 7b936a1e66
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6897

View File

@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: vm_object.h,v 1.8 1995/02/22 10:06:43 davidg Exp $
* $Id: vm_object.h,v 1.9 1995/03/01 23:29:58 davidg Exp $
*/
/*
@ -152,7 +152,7 @@ vm_object_pip_wakeup( vm_object_t object) {
if ((object->flags & OBJ_PIPWNT) &&
object->paging_in_progress == 0) {
object->flags &= ~OBJ_PIPWNT;
wakeup((caddr_t) object);
wakeup(object);
}
}