Fix: print.c: remove extra `)` after `+????????????`
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 1 Mar 2019 03:10:40 +0000 (22:10 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 3 May 2019 22:19:38 +0000 (18:19 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
plugins/text/pretty/print.c

index 389498afee02f1791d1a374a7a2eea7a361d8ccc..3f850b11b54b446602503eda7680bb5f744d7271 100644 (file)
@@ -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);
This page took 0.025124 seconds and 4 git commands to generate.