Eliminate an incorrect (and unnecessary) cast.

This commit is contained in:
Alan Cox 2005-07-20 18:41:08 +00:00
parent 0322f8dc8d
commit 15d2d31372

View File

@ -2518,7 +2518,7 @@ vmspace_fork(struct vmspace *vm1)
object = vm_object_allocate(OBJT_DEFAULT,
atop(old_entry->end - old_entry->start));
old_entry->object.vm_object = object;
old_entry->offset = (vm_offset_t) 0;
old_entry->offset = 0;
}
/*