mirror of
https://github.com/containers/skopeo.git
synced 2025-09-21 09:57:19 +00:00
9 lines
158 B
Go
9 lines
158 B
Go
package internal
|
|
|
|
func WidthForBarFiller(reqWidth, available int) int {
|
|
if reqWidth <= 0 || reqWidth >= available {
|
|
return available
|
|
}
|
|
return reqWidth
|
|
}
|