git: 9front

Download patch

ref: c00e72efa62a39598eba97408a4f306c11bc81fb
parent: 330465b3190f2298cdf82fbe2bcd817591b781e4
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sat Nov 5 16:08:20 EDT 2016

kernel: fix missing ; in panic() call

--- a/sys/src/9/port/allocb.c
+++ b/sys/src/9/port/allocb.c
@@ -84,7 +84,7 @@
 			if(nerr > 10000000){
 				xsummary();
 				mallocsummary();
-				panic("iallocb: out of memory")
+				panic("iallocb: out of memory");
 			}
 			iprint("iallocb: no memory for %d bytes\n", size);
 		}
--