diff options
Diffstat (limited to 'libpod/container_top.go')
-rw-r--r-- | libpod/container_top.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/container_top.go b/libpod/container_top.go index 241e3a3e7..bc007c408 100644 --- a/libpod/container_top.go +++ b/libpod/container_top.go @@ -7,6 +7,7 @@ import ( "strings" "github.com/pkg/errors" + "github.com/projectatomic/libpod/pkg/util" "github.com/projectatomic/libpod/utils" "github.com/sirupsen/logrus" ) @@ -91,7 +92,7 @@ func filterPids(psOutput string, pids []string) ([]string, error) { } cols := fieldsASCII(l) pid := cols[pidIndex] - if StringInSlice(pid, pids) { + if util.StringInSlice(pid, pids) { output = append(output, l) } } |