summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ufs/subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ufs/subr.c b/ufs/subr.c
index 5a6acd88..5833dfef 100644
--- a/ufs/subr.c
+++ b/ufs/subr.c
@@ -197,7 +197,7 @@ ffs_clrblock(fs, cp, h)
cp[h >> 3] &= ~(0x01 << (h & 0x7));
return;
default:
- panic("ffs_clrblock");
+ assert (0);
}
}