Source-Changes-HG archive

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

[src/trunk]: src/sys/uvm sys_mremap: unwrap a short line



details:   https://anonhg.NetBSD.org/src/rev/2bb3edf02eeb
branches:  trunk
changeset: 757135:2bb3edf02eeb
user:      yamt <yamt%NetBSD.org@localhost>
date:      Mon Aug 16 01:21:10 2010 +0000

description:
sys_mremap: unwrap a short line

diffstat:

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

diffs (28 lines):

diff -r 617a755d0138 -r 2bb3edf02eeb sys/uvm/uvm_mremap.c
--- a/sys/uvm/uvm_mremap.c      Sun Aug 15 22:32:02 2010 +0000
+++ b/sys/uvm/uvm_mremap.c      Mon Aug 16 01:21:10 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_mremap.c,v 1.15 2009/08/02 16:07:34 yamt Exp $     */
+/*     $NetBSD: uvm_mremap.c,v 1.16 2010/08/16 01:21:10 yamt Exp $     */
 
 /*-
  * Copyright (c)2006,2007,2009 YAMAMOTO Takashi,
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_mremap.c,v 1.15 2009/08/02 16:07:34 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_mremap.c,v 1.16 2010/08/16 01:21:10 yamt Exp $");
 
 #include <sys/param.h>
 #include <sys/mman.h>
@@ -287,8 +287,7 @@
 
        p = l->l_proc;
        map = &p->p_vmspace->vm_map;
-       error = uvm_mremap(map, oldva, oldsize, map, &newva, newsize, p,
-           flags);
+       error = uvm_mremap(map, oldva, oldsize, map, &newva, newsize, p, flags);
 
 done:
        *retval = (error != 0) ? 0 : (register_t)newva;



Home | Main Index | Thread Index | Old Index