Removed unnecessary test from if/else construct.

PR:		7233
Submitted by:	Stefan Eggers <seggers@semyam.dinoco.de>
This commit is contained in:
Alexander Langer 1998-07-10 17:58:35 +00:00
parent 930a642372
commit 427e99a0b8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37545

View File

@ -65,7 +65,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: vm_pageout.c,v 1.121 1998/03/30 09:56:58 phk Exp $
* $Id: vm_pageout.c,v 1.122 1998/06/02 05:39:13 dyson Exp $
*/
/*
@ -722,7 +722,7 @@ vm_pageout_scan()
*/
if (m->dirty == 0) {
vm_page_test_dirty(m);
} else if (m->dirty != 0) {
} else {
m->dirty = VM_PAGE_BITS_ALL;
}