Remove useless conversion
It is already type float. Signed-off-by: Hu Keping <hukeping@huawei.com>
This commit is contained in:
parent
157182ef69
commit
71f41fcc14
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ func CustomSize(format string, size float64, base float64, _map []string) string
|
||||||
// HumanSize returns a human-readable approximation of a size
|
// HumanSize returns a human-readable approximation of a size
|
||||||
// using SI standard (eg. "44kB", "17MB")
|
// using SI standard (eg. "44kB", "17MB")
|
||||||
func HumanSize(size float64) string {
|
func HumanSize(size float64) string {
|
||||||
return CustomSize("%.4g %s", float64(size), 1000.0, decimapAbbrs)
|
return CustomSize("%.4g %s", size, 1000.0, decimapAbbrs)
|
||||||
}
|
}
|
||||||
|
|
||||||
func BytesSize(size float64) string {
|
func BytesSize(size float64) string {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue