diff options
author | pluknet <pluknet@FreeBSD.org> | 2013-02-15 09:10:01 +0000 |
---|---|---|
committer | pluknet <pluknet@FreeBSD.org> | 2013-02-15 09:10:01 +0000 |
commit | 6f51f4e41927793152872f0fc6897b0fc304a49f (patch) | |
tree | 38a37cc5124561afdda0f3a69c8ccb4665a8c17f /sbin | |
parent | f8098d720c2ce28997d30a5e615da3393337aa12 (diff) | |
download | FreeBSD-src-6f51f4e41927793152872f0fc6897b0fc304a49f.zip FreeBSD-src-6f51f4e41927793152872f0fc6897b0fc304a49f.tar.gz |
Remove write only assignments and thus fix the build after struct bufarea
TAILQ conversion (r246812).
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fsdb/fsdbutil.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sbin/fsdb/fsdbutil.c b/sbin/fsdb/fsdbutil.c index eaea3db..91153d7 100644 --- a/sbin/fsdb/fsdbutil.c +++ b/sbin/fsdb/fsdbutil.c @@ -239,7 +239,6 @@ printindir(ufs2_daddr_t blk, int level, char *bufp) /* for the final indirect level, don't use the cache */ bp = &buf; bp->b_un.b_buf = bufp; - bp->b_prev = bp->b_next = bp; initbarea(bp); getblk(bp, blk, sblock.fs_bsize); |