int64 for metric units (#1419)
This commit is contained in:
parent
7e36432bf5
commit
1e63727064
1 changed files with 2 additions and 2 deletions
|
@ -760,7 +760,7 @@ func BackupHub(dirPath string) error {
|
|||
}
|
||||
|
||||
type unit struct {
|
||||
value int
|
||||
value int64
|
||||
symbol string
|
||||
}
|
||||
|
||||
|
@ -794,7 +794,7 @@ var ranges = []unit{
|
|||
func formatNumber(num int) string {
|
||||
goodUnit := unit{}
|
||||
for _, u := range ranges {
|
||||
if num >= u.value {
|
||||
if int64(num) >= u.value {
|
||||
goodUnit = u
|
||||
break
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue