summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorPaul Buetow (europa) <paul@buetow.org>2015-05-24 21:18:06 +0100
committerPaul Buetow (europa) <paul@buetow.org>2015-05-24 21:18:06 +0100
commit9019796ee10aef4dd8c8f47c217e1a1e85ace571 (patch)
tree8ce6dc6d3096b6fb1462c3bdb8a1551d950e2431 /main
parent8ff768026dfa04d2e1a2c9c9f4cd8b08642004fa (diff)
add Process.Print
Diffstat (limited to 'main')
-rw-r--r--main/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.go b/main/main.go
index b8b5d39..d1f031c 100644
--- a/main/main.go
+++ b/main/main.go
@@ -36,7 +36,7 @@ func main() {
for {
process, more := <-res
if more {
- fmt.Println(process.Cmdline)
+ process.Print()
} else {
break
}