mirror of
https://github.com/containers/podman.git
synced 2025-10-19 12:12:36 +08:00
fix(deps): update module github.com/crc-org/vfkit to v0.6.1
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
9
vendor/github.com/lufia/plan9stats/int.go
generated
vendored
9
vendor/github.com/lufia/plan9stats/int.go
generated
vendored
@ -26,6 +26,15 @@ func (p *intParser) ParseInt64(s string, base int) int64 {
|
||||
return n
|
||||
}
|
||||
|
||||
func (p *intParser) ParseUint64(s string, base int) uint64 {
|
||||
if p.err != nil {
|
||||
return 0
|
||||
}
|
||||
var n uint64
|
||||
n, p.err = strconv.ParseUint(s, base, 64)
|
||||
return n
|
||||
}
|
||||
|
||||
func (p *intParser) Err() error {
|
||||
return p.err
|
||||
}
|
||||
|
Reference in New Issue
Block a user