little bug fixes

This commit is contained in:
rsc 2004-06-17 18:51:50 +00:00
parent 503f601cb0
commit 7cb748941e
4 changed files with 14 additions and 4 deletions

View file

@ -262,7 +262,8 @@ vtcachebumpblock(VtCache *c)
*/
if(c->nheap == 0){
vtcachedump(c);
sysfatal("vtcachebumpblock: no free blocks in vtCache");
fprint(2, "vtcachebumpblock: no free blocks in vtCache");
abort();
}
b = c->heap[0];
heapdel(b);