From 5a6d808be8e8408ab40842b34b3f071b15aaa06f Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Sun, 16 Apr 1995 20:35:09 +0000 Subject: Formerly truncate.c.~10~ --- ext2fs/truncate.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ext2fs') diff --git a/ext2fs/truncate.c b/ext2fs/truncate.c index 524fd8ed..5d652255 100644 --- a/ext2fs/truncate.c +++ b/ext2fs/truncate.c @@ -74,7 +74,7 @@ trunc_direct (struct node * node, unsigned long length) if (!block) continue; - bh = block_image(block); + bh = bptr(block); if (i < direct_block) goto repeat; @@ -121,7 +121,7 @@ trunc_indirect (struct node * node, unsigned long length, if (!block) return 0; - ind_bh = block_image (block); + ind_bh = bptr (block); if (!ind_bh) { *p = 0; return 0; @@ -137,7 +137,7 @@ trunc_indirect (struct node * node, unsigned long length, if (!block) continue; - bh = block_image (block); + bh = bptr (block); if (i < indirect_block) goto repeat; @@ -199,7 +199,7 @@ trunc_dindirect (struct node * node, unsigned long length, if (!block) return 0; - dind_bh = block_image (block); + dind_bh = bptr (block); if (!dind_bh) { *p = 0; @@ -251,7 +251,7 @@ trunc_tindirect (struct node * node, unsigned long length) if (!(block = *p)) return 0; - tind_bh = block_image (block); + tind_bh = bptr (block); if (!tind_bh) { *p = 0; -- cgit v1.2.3