From 50e38eb5d40d17532c3c7ab13445bd4a8dd24dec Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Thu, 28 Feb 2019 22:10:40 -0500 Subject: [PATCH] Fix: print.c: remove extra `)` after `+????????????` Signed-off-by: Philippe Proulx --- plugins/text/pretty/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/text/pretty/print.c b/plugins/text/pretty/print.c index 389498af..3f850b11 100644 --- a/plugins/text/pretty/print.c +++ b/plugins/text/pretty/print.c @@ -260,7 +260,7 @@ int print_event_timestamp(struct pretty_component *pretty, if (pretty->options.print_timestamp_cycles) { if (pretty->delta_cycles == -1ULL) { g_string_append(pretty->string, - "+??????????\?\?) "); /* Not a trigraph. */ + "+??????????\?\?"); /* Not a trigraph. */ } else { g_string_append_printf(pretty->string, "+%012" PRIu64, pretty->delta_cycles); -- 2.34.1