commit | e132119f07fc286bca75504cc4a225d527507b38 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Mon Jan 22 22:50:01 2001 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Mon Jan 22 22:50:01 2001 +0000 |
tree | 55c872c357538a57ff30fe379f1b5c2743cfeae6 | |
parent | 6705986f2702dfa3b9dd6247d7558da90f184abc [diff] [blame] |
Fix silly typo
diff --git a/df.c b/df.c index aa04682..22797fb 100644 --- a/df.c +++ b/df.c
@@ -46,7 +46,7 @@ if (s.f_blocks > 0) { blocks_used = s.f_blocks - s.f_bfree; if(0 == blocks_used) - blocs_percent_used = 0; + blocks_percent_used = 0; else blocks_percent_used = (long) (blocks_used * 100.0 / (blocks_used + s.f_bavail) + 0.5);