diff --git a/sys/uvm/uvm_device.c b/sys/uvm/uvm_device.c index 76443b35ceac..5c3a2a0c1c35 100644 --- a/sys/uvm/uvm_device.c +++ b/sys/uvm/uvm_device.c @@ -1,4 +1,4 @@ -/* $NetBSD: uvm_device.c,v 1.15 1999/03/26 21:58:39 mycroft Exp $ */ +/* $NetBSD: uvm_device.c,v 1.16 1999/04/08 10:26:21 drochner Exp $ */ /* * @@ -164,7 +164,7 @@ udv_attach(arg, accessprot, off, size) while (size != 0) { if ((*mapfn)(device, off, accessprot) == -1) return (NULL); - off += PAGE_SIZE, size -= PAGE_SIZE; + off += PAGE_SIZE; size -= PAGE_SIZE; } /*