mirror of
https://git.busybox.net/busybox.git
synced 2024-11-24 06:03:27 +08:00
Fix silly typo
This commit is contained in:
parent
6705986f27
commit
e132119f07
@ -46,7 +46,7 @@ static int df(char *device, const char *mountPoint)
|
||||
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);
|
||||
|
2
df.c
2
df.c
@ -46,7 +46,7 @@ static int df(char *device, const char *mountPoint)
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user