From: Andi Kleen <a...@linux.intel.com>

When printing the metrics raw, don't print : after the metricgroups.
This helps the command line completion to complete those too.

Signed-off-by: Andi Kleen <a...@linux.intel.com>
---
 tools/perf/util/metricgroup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/util/metricgroup.c b/tools/perf/util/metricgroup.c
index fabdb6dde88e..1c85c9624c58 100644
--- a/tools/perf/util/metricgroup.c
+++ b/tools/perf/util/metricgroup.c
@@ -376,7 +376,7 @@ void metricgroup__print(bool metrics, bool metricgroups, 
char *filter,
                struct mep *me = container_of(node, struct mep, nd);
 
                if (metricgroups)
-                       printf("%s%s%s", me->name, metrics ? ":" : "", raw ? " 
" : "\n");
+                       printf("%s%s%s", me->name, metrics && !raw ? ":" : "", 
raw ? " " : "\n");
                if (metrics)
                        metricgroup__print_strlist(me->metrics, raw);
                next = rb_next(node);
-- 
2.20.1

Reply via email to