kernel: fix missing ; in panic() call
This commit is contained in:
parent
963497f06b
commit
c1fd7c210b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue