aboutsummaryrefslogtreecommitdiff
path: root/src/libventi/cache.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-06-17 18:51:50 +0000
committerrsc <devnull@localhost>2004-06-17 18:51:50 +0000
commit7cb748941ecffdd66630ba463080cf44fcb62161 (patch)
tree2372759d9836da41b3317cc3a3feb66613c94142 /src/libventi/cache.c
parent503f601cb052dc04b9e4e9e91f8e877f00c6b571 (diff)
downloadplan9port-7cb748941ecffdd66630ba463080cf44fcb62161.tar.gz
plan9port-7cb748941ecffdd66630ba463080cf44fcb62161.tar.bz2
plan9port-7cb748941ecffdd66630ba463080cf44fcb62161.zip
little bug fixes
Diffstat (limited to 'src/libventi/cache.c')
-rw-r--r--src/libventi/cache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libventi/cache.c b/src/libventi/cache.c
index 6ed61a06..fb0be905 100644
--- a/src/libventi/cache.c
+++ b/src/libventi/cache.c
@@ -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);