projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86e7bde
)
(get_fs_usage): Add parens.
author
Jim Meyering
<jim@meyering.net>
Mon, 5 Jan 1998 17:38:38 +0000
(17:38 +0000)
committer
Jim Meyering
<jim@meyering.net>
Mon, 5 Jan 1998 17:38:38 +0000
(17:38 +0000)
lib/fsusage.c
patch
|
blob
|
history
diff --git
a/lib/fsusage.c
b/lib/fsusage.c
index 16f0beddeb5a349ecbe3a95d79b30535cf6997ab..98993b17af0613b40e89cecaf73644f3286140a0 100644
(file)
--- a/
lib/fsusage.c
+++ b/
lib/fsusage.c
@@
-138,7
+138,7
@@
get_fs_usage (path, disk, fsp)
}
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);