summaryrefslogtreecommitdiff
path: root/sys/ufs/ext2fs/ext2fs_subr.c
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2003-05-26 18:33:18 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2003-05-26 18:33:18 +0000
commitd9540446d8c186c4d28cf77e40a931e771e4eff9 (patch)
treed2c175566022f7d928a9345dccda179bf10932bc /sys/ufs/ext2fs/ext2fs_subr.c
parentc0955d2b195c0e0a7cfb66ef79790c295c30432b (diff)
fiddle with some type names. change most instances of ufs_daddr_t to
ufs1_daddr_t, a few to daddr_t. ufs_daddr_t typedef is retained, but consider it deprecated. no functional changes. inspired by freebsd. ok art@
Diffstat (limited to 'sys/ufs/ext2fs/ext2fs_subr.c')
-rw-r--r--sys/ufs/ext2fs/ext2fs_subr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_subr.c b/sys/ufs/ext2fs/ext2fs_subr.c
index 02d84be4302..357c3a3b748 100644
--- a/sys/ufs/ext2fs/ext2fs_subr.c
+++ b/sys/ufs/ext2fs/ext2fs_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_subr.c,v 1.8 2001/12/19 08:58:07 art Exp $ */
+/* $OpenBSD: ext2fs_subr.c,v 1.9 2003/05/26 18:33:16 tedu Exp $ */
/* $NetBSD: ext2fs_subr.c,v 1.1 1997/06/11 09:34:03 bouyer Exp $ */
/*
@@ -60,7 +60,7 @@ ext2fs_bufatoff(struct inode *ip, off_t offset, char **res, struct buf **bpp)
struct vnode *vp;
struct m_ext2fs *fs;
struct buf *bp;
- ufs_daddr_t lbn;
+ ufs1_daddr_t lbn;
int error;
vp = ITOV(ip);
@@ -86,7 +86,7 @@ ext2fs_checkoverlap(bp, ip)
struct inode *ip;
{
struct buf *ebp, *ep;
- ufs_daddr_t start, last;
+ ufs1_daddr_t start, last;
struct vnode *vp;
ebp = &buf[nbuf];