# HG changeset patch # User Jim Meyering # Date 763656854 0 # Node ID f87fb08e4215d54f6470954564b3e05b4eac87f9 # Parent a1a82c93bb416c3b5e35c0316318d2064bc226e8 . diff --git a/lib/fsusage.c b/lib/fsusage.c --- a/lib/fsusage.c +++ b/lib/fsusage.c @@ -100,7 +100,7 @@ if (statfs (path, &fsd, sizeof (struct statfs)) != 0) return (-1); -#define convert_blocks(b) adjust_blocks ((b),fsd.f_fsize, 512) +#define convert_blocks(b) adjust_blocks ((b), fsd.f_fsize, 512) #endif /* STAT_STATFS3_OSF1 */ #ifdef STAT_STATFS2_FS_DATA /* Ultrix. */ @@ -133,7 +133,8 @@ return -1; } close (fd); -#define convert_blocks(b) adjust_blocks ((b), (fsd.s_type == Fs2b ? 1024 : 512), 512) +#define convert_blocks(b) \ + adjust_blocks ((b), (fsd.s_type == Fs2b ? 1024 : 512), 512) fsp->fsu_blocks = convert_blocks (fsd.s_fsize); fsp->fsu_bfree = convert_blocks (fsd.s_tfree); fsp->fsu_bavail = convert_blocks (fsd.s_tfree);