summaryrefslogtreecommitdiff
path: root/sys/src/9/port/allocb.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2016-11-05 20:08:20 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2016-11-05 20:08:20 +0100
commitc1fd7c210bdafe97e7b8d07dc256f4b089df9342 (patch)
tree41d4cbf916d2467b5f09af8c0376e1e19256e224 /sys/src/9/port/allocb.c
parent963497f06b39a4fd9d80476fab732682122479e9 (diff)
kernel: fix missing ; in panic() call
Diffstat (limited to 'sys/src/9/port/allocb.c')
-rw-r--r--sys/src/9/port/allocb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/port/allocb.c b/sys/src/9/port/allocb.c
index 8ce8a73fb..24fc17d64 100644
--- a/sys/src/9/port/allocb.c
+++ b/sys/src/9/port/allocb.c
@@ -84,7 +84,7 @@ iallocb(int size)
if(nerr > 10000000){
xsummary();
mallocsummary();
- panic("iallocb: out of memory")
+ panic("iallocb: out of memory");
}
iprint("iallocb: no memory for %d bytes\n", size);
}