From 57e77c5c37da1f4e1af49f9d1fe760f146c1579e Mon Sep 17 00:00:00 2001 From: Jaana Burcu Dogan Date: Mon, 4 Sep 2017 23:05:17 -0700 Subject: [PATCH] agent indicator should be postfix --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 7d5657d8..d77fe58f 100644 --- a/main.go +++ b/main.go @@ -86,14 +86,14 @@ func processes() { fmt.Fprint(buf, " ") ppid := strconv.Itoa(p.PPID) fmt.Fprint(buf, pad(ppid, maxPPID)) + fmt.Fprint(buf, " ") + fmt.Fprint(buf, pad(p.Exec, maxExec)) if p.Agent { fmt.Fprint(buf, "*") } else { fmt.Fprint(buf, " ") } fmt.Fprint(buf, " ") - fmt.Fprint(buf, pad(p.Exec, maxExec)) - fmt.Fprint(buf, " ") fmt.Fprint(buf, pad(p.BuildVersion, maxVersion)) fmt.Fprint(buf, " ") fmt.Fprint(buf, p.Path)