Module Name:    src
Committed By:   uwe
Date:           Thu Feb  2 21:22:08 UTC 2017

Modified Files:
        src/sys/uvm: uvm_physseg.c

Log Message:
Add missing spaces in split string literals.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/uvm/uvm_physseg.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/uvm/uvm_physseg.c
diff -u src/sys/uvm/uvm_physseg.c:1.6 src/sys/uvm/uvm_physseg.c:1.7
--- src/sys/uvm/uvm_physseg.c:1.6	Thu Dec 29 12:58:38 2016
+++ src/sys/uvm/uvm_physseg.c	Thu Feb  2 21:22:08 2017
@@ -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 @@ uvm_physseg_alloc(size_t sz)
 	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 @@ uvm_physseg_free(void *p, size_t sz)
 	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 @@ uvm_physseg_free(void *p, size_t sz)
 	    (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_unplug(paddr_t pfn, size_t p
 		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;

Reply via email to