Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/uvm sanity: use ';' to separate statements



details:   https://anonhg.NetBSD.org/src/rev/4566f2e842c0
branches:  trunk
changeset: 471697:4566f2e842c0
user:      drochner <drochner%NetBSD.org@localhost>
date:      Thu Apr 08 10:26:21 1999 +0000

description:
sanity: use ';' to separate statements

diffstat:

 sys/uvm/uvm_device.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r e9dfe0f6594b -r 4566f2e842c0 sys/uvm/uvm_device.c
--- a/sys/uvm/uvm_device.c      Thu Apr 08 10:23:23 1999 +0000
+++ b/sys/uvm/uvm_device.c      Thu Apr 08 10:26:21 1999 +0000
@@ -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 @@
        while (size != 0) {
                if ((*mapfn)(device, off, accessprot) == -1)
                        return (NULL);
-               off += PAGE_SIZE, size -= PAGE_SIZE;
+               off += PAGE_SIZE; size -= PAGE_SIZE;
        }
 
        /*



Home | Main Index | Thread Index | Old Index