From: Philippe Proulx Date: Tue, 19 Feb 2019 19:50:34 +0000 (-0500) Subject: sink.text.pretty: use fast clock class access X-Git-Tag: v2.0.0-pre5~162 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=b3f050a97c4caadd05425557f50ea4cebad9c920 sink.text.pretty: use fast clock class access Signed-off-by: Philippe Proulx --- diff --git a/plugins/text/pretty/print.c b/plugins/text/pretty/print.c index be9b13e9..25565df8 100644 --- a/plugins/text/pretty/print.c +++ b/plugins/text/pretty/print.c @@ -213,22 +213,20 @@ int print_event_timestamp(struct pretty_component *pretty, { bool print_names = pretty->options.print_header_field_names; int ret = 0; - const bt_stream *stream = NULL; - const bt_stream_class *stream_class = NULL; const bt_clock_snapshot *clock_snapshot = NULL; - const bt_event *event = bt_message_event_borrow_event_const(event_msg); - - stream = bt_event_borrow_stream_const(event); - stream_class = bt_stream_borrow_class_const(stream); - if (!bt_stream_class_borrow_default_clock_class_const(stream_class)) { + if (!bt_message_event_borrow_stream_class_default_clock_class_const( + event_msg)) { /* No default clock class: skip the timestamp without an error */ goto end; } if (bt_message_event_borrow_default_clock_snapshot_const(event_msg, &clock_snapshot) != BT_CLOCK_SNAPSHOT_STATE_KNOWN) { - /* No default clock value: skip the timestamp without an error */ + /* + * No known default clock value: skip the timestamp + * without an error. + */ goto end; }