Source-Changes-HG archive

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

[src/trunk]: src/sys/uvm No need to break a line - the full line is less than...



details:   https://anonhg.NetBSD.org/src/rev/30b675cd14bb
branches:  trunk
changeset: 556596:30b675cd14bb
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sun Dec 21 11:38:46 2003 +0000

description:
No need to break a line - the full line is less than 80 chars long.

diffstat:

 sys/uvm/uvm_page.c |  7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r a23c3e0954f7 -r 30b675cd14bb sys/uvm/uvm_page.c
--- a/sys/uvm/uvm_page.c        Sun Dec 21 11:35:36 2003 +0000
+++ b/sys/uvm/uvm_page.c        Sun Dec 21 11:38:46 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_page.c,v 1.92 2003/11/05 15:45:54 yamt Exp $       */
+/*     $NetBSD: uvm_page.c,v 1.93 2003/12/21 11:38:46 simonb Exp $     */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.92 2003/11/05 15:45:54 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.93 2003/12/21 11:38:46 simonb Exp $");
 
 #include "opt_uvmhist.h"
 
@@ -233,8 +233,7 @@
 
        for (color = 0; color < uvmexp.ncolors; color++) {
                for (i = 0; i < PGFL_NQUEUES; i++) {
-                       TAILQ_INIT(&pgfl->pgfl_buckets[
-                           color].pgfl_queues[i]);
+                       TAILQ_INIT(&pgfl->pgfl_buckets[color].pgfl_queues[i]);
                }
        }
 }



Home | Main Index | Thread Index | Old Index