Fix: pretty/print.c: print comma and space after trace name
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 10 Apr 2019 01:22:03 +0000 (21:22 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 3 May 2019 22:19:39 +0000 (18:19 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
plugins/text/pretty/print.c

index 2bf132962010ad1cce12ad55f78f8f1a13568c74..914ae4c2d1b3b93745741974ce7c376e7dca3b58 100644 (file)
@@ -334,8 +334,8 @@ int print_event_header(struct pretty_component *pretty,
 
                        g_string_append(pretty->string, name);
 
-                       if (!print_names) {
-                               g_string_append(pretty->string, " ");
+                       if (print_names) {
+                               g_string_append(pretty->string, ", ");
                        }
                }
        }
This page took 0.025781 seconds and 4 git commands to generate.