changeset 1202:c9448dd2fd94

(get_fs_usage): Add parens.
author Jim Meyering <jim@meyering.net>
date Mon, 05 Jan 1998 17:38:38 +0000
parents 5f2881266806
children 2b6373ef4d3b
files lib/fsusage.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/fsusage.c	Mon Jan 05 17:33:54 1998 +0000
+++ b/lib/fsusage.c	Mon Jan 05 17:38:38 1998 +0000
@@ -138,7 +138,7 @@
     }
   close (fd);
 
-  fsp->fsu_blocksize = fsd.s_type == Fs2b ? 1024 : 512;
+  fsp->fsu_blocksize = (fsd.s_type == Fs2b ? 1024 : 512);
   fsp->fsu_blocks = PROPAGATE_ALL_ONES (fsd.s_fsize);
   fsp->fsu_bfree = PROPAGATE_ALL_ONES (fsd.s_tfree);
   fsp->fsu_bavail = PROPAGATE_ALL_ONES (fsd.s_tfree);