mirror of
https://github.com/containers/podman.git
synced 2025-11-30 01:58:46 +08:00
Update github.com/containers/psgo digest to 533b50b
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
2
vendor/github.com/containers/psgo/internal/capabilities/capabilities.go
generated
vendored
2
vendor/github.com/containers/psgo/internal/capabilities/capabilities.go
generated
vendored
@@ -79,7 +79,7 @@ var (
|
||||
// the kernel.
|
||||
func TranslateMask(mask uint64) []string {
|
||||
caps := []string{}
|
||||
for i := uint(0); i < 64; i++ {
|
||||
for i := range uint(64) {
|
||||
if (mask>>i)&0x1 == 1 {
|
||||
c, known := capabilities[i]
|
||||
if !known {
|
||||
|
||||
Reference in New Issue
Block a user