Source-Changes-HG archive

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

[src/trunk]: src/sys/uvm Add missing , to fix syntax



details:   https://anonhg.NetBSD.org/src/rev/4fcc87500d03
branches:  trunk
changeset: 824039:4fcc87500d03
user:      kamil <kamil%NetBSD.org@localhost>
date:      Fri May 19 16:56:35 2017 +0000

description:
Add missing , to fix syntax

Unbreaks build after recent change adding a message for vm.user_va0_disable

diffstat:

 sys/uvm/uvm_map.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 3ea1025da999 -r 4fcc87500d03 sys/uvm/uvm_map.c
--- a/sys/uvm/uvm_map.c Fri May 19 15:30:19 2017 +0000
+++ b/sys/uvm/uvm_map.c Fri May 19 16:56:35 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_map.c,v 1.347 2017/05/19 15:30:19 chs Exp $        */
+/*     $NetBSD: uvm_map.c,v 1.348 2017/05/19 16:56:35 kamil Exp $      */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.347 2017/05/19 15:30:19 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.348 2017/05/19 16:56:35 kamil Exp $");
 
 #include "opt_ddb.h"
 #include "opt_pax.h"
@@ -1068,7 +1068,7 @@
        if ((flags & UVM_FLAG_FIXED) && *startp == 0 &&
            !VM_MAP_IS_KERNEL(map) && user_va0_disable) {
                uprintf("%s: process wants to map virtual address 0; see "
-                   "vm.user_va0_disable in sysctl(7).\n" __func__);
+                   "vm.user_va0_disable in sysctl(7).\n", __func__);
                return EACCES;
        }
 #endif



Home | Main Index | Thread Index | Old Index