summaryrefslogtreecommitdiff
path: root/sys/ufs
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
parent1b0f30286518c3144543a60d182344ab3827d36a (diff)
minor comment beautification
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ffs/ffs_alloc.c6
-rw-r--r--sys/ufs/ufs/ufsmount.h4
2 files changed, 5 insertions, 5 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);
}
diff --git a/sys/ufs/ufs/ufsmount.h b/sys/ufs/ufs/ufsmount.h
index 732ad0d0e21..e9dc71f9855 100644
--- a/sys/ufs/ufs/ufsmount.h
+++ b/sys/ufs/ufs/ufsmount.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ufsmount.h,v 1.4 1997/05/30 08:35:22 downsj Exp $ */
+/* $OpenBSD: ufsmount.h,v 1.5 1999/06/01 01:48:52 millert Exp $ */
/* $NetBSD: ufsmount.h,v 1.4 1994/12/21 20:00:23 mycroft Exp $ */
/*
@@ -54,7 +54,7 @@ struct ufsmount {
union { /* pointer to superblock */
struct fs *fs; /* FFS */
struct lfs *lfs; /* LFS */
- struct m_ext2fs *e2fs; /* EXT2FS */
+ struct m_ext2fs *e2fs; /* EXT2FS */
} ufsmount_u;
#define um_fs ufsmount_u.fs
#define um_lfs ufsmount_u.lfs