diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-05 20:08:20 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-05 20:08:20 +0100 |
commit | c1fd7c210bdafe97e7b8d07dc256f4b089df9342 (patch) | |
tree | 41d4cbf916d2467b5f09af8c0376e1e19256e224 | |
parent | 963497f06b39a4fd9d80476fab732682122479e9 (diff) |
kernel: fix missing ; in panic() call
-rw-r--r-- | sys/src/9/port/allocb.c | 2 |
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); } |