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 spaces in split string literals.



details:   https://anonhg.NetBSD.org/src/rev/8b1ad5c944c9
branches:  trunk
changeset: 821369:8b1ad5c944c9
user:      uwe <uwe%NetBSD.org@localhost>
date:      Thu Feb 02 21:22:08 2017 +0000

description:
Add missing spaces in split string literals.

diffstat:

 sys/uvm/uvm_physseg.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (45 lines):

diff -r 56bba009286f -r 8b1ad5c944c9 sys/uvm/uvm_physseg.c
--- a/sys/uvm/uvm_physseg.c     Thu Feb 02 21:17:40 2017 +0000
+++ b/sys/uvm/uvm_physseg.c     Thu Feb 02 21:22:08 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_physseg.c,v 1.6 2016/12/29 12:58:38 rin Exp $ */
+/* $NetBSD: uvm_physseg.c,v 1.7 2017/02/02 21:22:08 uwe Exp $ */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -166,7 +166,7 @@
        if (__predict_false(uvm.page_init_done == false)) {
                if (sz % sizeof(struct uvm_physseg))
                        panic("%s: tried to alloc size other than multiple"
-                           "of struct uvm_physseg at boot\n", __func__);
+                           " of struct uvm_physseg at boot\n", __func__);
 
                size_t n = sz / sizeof(struct uvm_physseg);
                nseg += n;
@@ -200,7 +200,7 @@
        if (__predict_false(uvm.page_init_done == false)) {
                if (sz % sizeof(struct uvm_physseg))
                        panic("%s: tried to free size other than struct uvm_physseg"
-                           "at boot\n", __func__);
+                           " at boot\n", __func__);
 
        }
 
@@ -213,7 +213,7 @@
            (struct uvm_physseg *)p < (uvm_physseg + VM_PHYSSEG_MAX)) {
                if (sz % sizeof(struct uvm_physseg))
                        panic("%s: tried to free() other than struct uvm_physseg"
-                           "from static array\n", __func__);
+                           " from static array\n", __func__);
 
                if ((sz / sizeof(struct uvm_physseg)) >= VM_PHYSSEG_MAX)
                        panic("%s: tried to free() the entire static array!", __func__);
@@ -1349,7 +1349,7 @@
                uvm_physseg_graph.nentries++;
 #else /* UVM_HOTPLUG */
                panic("%s: can't unplug() from the middle of a segment without"
-                   "UVM_HOTPLUG\n",  __func__);
+                   " UVM_HOTPLUG\n",  __func__);
                /* NOTREACHED */
 #endif /* UVM_HOTPLUG */
                return true;



Home | Main Index | Thread Index | Old Index