summaryrefslogtreecommitdiff
path: root/vendor/github.com/vbauerster/mpb/v7/internal
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-08-27 09:10:27 -0400
committerGitHub <noreply@github.com>2021-08-27 09:10:27 -0400
commit69cdf5d8035672e8bc7141cac0207e4b0f0e80cd (patch)
treebd2f9184eb3f7ca4aa7d3323b6fec350aae56209 /vendor/github.com/vbauerster/mpb/v7/internal
parent6f61ef87afe6695ca6cbd6e3b818ef619b6d54da (diff)
parentf5ce02b227f43feb7a02b09890facf198448621e (diff)
downloadpodman-69cdf5d8035672e8bc7141cac0207e4b0f0e80cd.tar.gz
podman-69cdf5d8035672e8bc7141cac0207e4b0f0e80cd.tar.bz2
podman-69cdf5d8035672e8bc7141cac0207e4b0f0e80cd.zip
Merge pull request #11330 from containers/dependabot/go_modules/github.com/containers/image/v5-5.16.0
Bump github.com/containers/image/v5 from 5.15.2 to 5.16.0
Diffstat (limited to 'vendor/github.com/vbauerster/mpb/v7/internal')
-rw-r--r--vendor/github.com/vbauerster/mpb/v7/internal/percentage.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/vbauerster/mpb/v7/internal/percentage.go b/vendor/github.com/vbauerster/mpb/v7/internal/percentage.go
index a8ef8be12..4bc36f5ba 100644
--- a/vendor/github.com/vbauerster/mpb/v7/internal/percentage.go
+++ b/vendor/github.com/vbauerster/mpb/v7/internal/percentage.go
@@ -3,7 +3,7 @@ package internal
import "math"
// Percentage is a helper function, to calculate percentage.
-func Percentage(total, current int64, width int) float64 {
+func Percentage(total, current int64, width uint) float64 {
if total <= 0 {
return 0
}
@@ -14,6 +14,6 @@ func Percentage(total, current int64, width int) float64 {
}
// PercentageRound same as Percentage but with math.Round.
-func PercentageRound(total, current int64, width int) float64 {
+func PercentageRound(total, current int64, width uint) float64 {
return math.Round(Percentage(total, current, width))
}