sanity: use ';' to separate statements

This commit is contained in:
drochner 1999-04-08 10:26:21 +00:00
parent 0ead10436a
commit 3d6e675ba8

View File

@ -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;
}
/*