diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-05-26 18:33:18 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-05-26 18:33:18 +0000 |
commit | d9540446d8c186c4d28cf77e40a931e771e4eff9 (patch) | |
tree | d2c175566022f7d928a9345dccda179bf10932bc /sys/ufs/ffs/ffs_balloc.c | |
parent | c0955d2b195c0e0a7cfb66ef79790c295c30432b (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/ffs/ffs_balloc.c')
-rw-r--r-- | sys/ufs/ffs/ffs_balloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_balloc.c b/sys/ufs/ffs/ffs_balloc.c index daf5b86082b..0993805aeed 100644 --- a/sys/ufs/ffs/ffs_balloc.c +++ b/sys/ufs/ffs/ffs_balloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_balloc.c,v 1.22 2001/12/19 08:58:07 art Exp $ */ +/* $OpenBSD: ffs_balloc.c,v 1.23 2003/05/26 18:33:16 tedu Exp $ */ /* $NetBSD: ffs_balloc.c,v 1.3 1996/02/09 22:22:21 christos Exp $ */ /* @@ -382,7 +382,7 @@ fail: (int)fs->fs_bsize, NOCRED, &bp); if (r) panic("Could not unwind indirect block, error %d", r); - bap = (ufs_daddr_t *)bp->b_data; + bap = (daddr_t *)bp->b_data; bap[indirs[unwindidx].in_off] = 0; if (flags & B_SYNC) { bwrite(bp); |