summaryrefslogtreecommitdiff
path: root/ufs/subr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ufs/subr.c')
-rw-r--r--ufs/subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ufs/subr.c b/ufs/subr.c
index 1730e737..5a6acd88 100644
--- a/ufs/subr.c
+++ b/ufs/subr.c
@@ -169,7 +169,7 @@ ffs_isblock(fs, cp, h)
mask = 0x01 << (h & 0x7);
return ((cp[h >> 3] & mask) == mask);
default:
- panic("ffs_isblock");
+ assert (0);
}
}