From 7d60769bead4b89a096e10bacbb503702ea6e44c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 7 Dec 1998 03:12:10 +0000 Subject: ansideclify --- lib/fileblocks.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/fileblocks.c') diff --git a/lib/fileblocks.c b/lib/fileblocks.c index 0c182d8e0..1a44516f3 100644 --- a/lib/fileblocks.c +++ b/lib/fileblocks.c @@ -50,8 +50,7 @@ typedef long daddr_t; /* for disk address */ /* Return the number of 512-byte blocks in a file of SIZE bytes. */ off_t -st_blocks (size) - off_t size; +st_blocks (off_t size) { off_t datablks = size / 512 + (size % 512 != 0); off_t indrblks = 0; -- cgit v1.2.3-54-g00ecf