summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-06-01 01:48:53 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-06-01 01:48:53 +0000
commitb51d31156521fd8f1c74cd2fe999dc9f4c14a4d9 (patch)
tree35c9e8bd11e4b44d29a6a5d5b8668e5168f9a46c /sys/ufs/ffs
parent1b0f30286518c3144543a60d182344ab3827d36a (diff)
minor comment beautification
Diffstat (limited to 'sys/ufs/ffs')
-rw-r--r--sys/ufs/ffs/ffs_alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c
index 0a25f83312b..4017741f978 100644
--- a/sys/ufs/ffs/ffs_alloc.c
+++ b/sys/ufs/ffs/ffs_alloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ffs_alloc.c,v 1.15 1999/02/26 03:56:30 art Exp $ */
+/* $OpenBSD: ffs_alloc.c,v 1.16 1999/06/01 01:48:52 millert Exp $ */
/* $NetBSD: ffs_alloc.c,v 1.11 1996/05/11 18:27:09 mycroft Exp $ */
/*
@@ -1495,13 +1495,13 @@ ffs_checkblk(ip, bno, size)
error = bread(ip->i_devvp, fsbtodb(fs, cgtod(fs, dtog(fs, bno))),
(int)fs->fs_cgsize, NOCRED, &bp);
if (error) {
- /* XXX -probably should pannic here */
+ /* XXX - probably should panic here */
brelse(bp);
return (-1);
}
cgp = (struct cg *)bp->b_data;
if (!cg_chkmagic(cgp)) {
- /* XXX -probably should pannic here */
+ /* XXX - probably should panic here */
brelse(bp);
return (-1);
}