summaryrefslogtreecommitdiffstats
path: root/cmd/gotop/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/gotop/main.go')
-rw-r--r--cmd/gotop/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gotop/main.go b/cmd/gotop/main.go
index 18525c6..4f611a1 100644
--- a/cmd/gotop/main.go
+++ b/cmd/gotop/main.go
@@ -578,7 +578,7 @@ func listDevices() {
sort.Strings(ms)
for _, m := range ms {
fmt.Printf("%s:\n", m)
- for _, d := range devices.Devices(m) {
+ for _, d := range devices.Devices(m, true) {
fmt.Printf("\t%s\n", d)
}
}