Merge fmt_human_2 and fmt_human_10 to one function
Now only one function, fmt_human, takes an additional argument "base".
This commit is contained in:
parent
fc0dde5a60
commit
10dbc9543e
7 changed files with 44 additions and 46 deletions
|
@ -16,7 +16,7 @@ disk_free(const char *mnt)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
return fmt_human_2(fs.f_frsize * fs.f_bavail);
|
||||
return fmt_human(fs.f_frsize * fs.f_bavail, 1024);
|
||||
}
|
||||
|
||||
const char *
|
||||
|
@ -43,7 +43,7 @@ disk_total(const char *mnt)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
return fmt_human_2(fs.f_frsize * fs.f_blocks);
|
||||
return fmt_human(fs.f_frsize * fs.f_blocks, 1024);
|
||||
}
|
||||
|
||||
const char *
|
||||
|
@ -56,5 +56,5 @@ disk_used(const char *mnt)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
return fmt_human_2(fs.f_frsize * (fs.f_blocks - fs.f_bfree));
|
||||
return fmt_human(fs.f_frsize * (fs.f_blocks - fs.f_bfree), 1024);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue