From 693de5b44771598bc21be051855e4d06b0a8a933 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Tue, 12 Sep 2023 14:18:56 -0400 Subject: [PATCH] ctf: fix formatting in ctf-meta-resolve.cpp Run tools/format-cpp. Signed-off-by: Simon Marchi Change-Id: Iea7165c5996b5ce62790ddb9df69e4e8e5014240 Reviewed-on: https://review.lttng.org/c/babeltrace/+/10891 Reviewed-by: Philippe Proulx --- src/plugins/ctf/common/metadata/ctf-meta-resolve.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/plugins/ctf/common/metadata/ctf-meta-resolve.cpp b/src/plugins/ctf/common/metadata/ctf-meta-resolve.cpp index c77ec46b..4e977a1d 100644 --- a/src/plugins/ctf/common/metadata/ctf-meta-resolve.cpp +++ b/src/plugins/ctf/common/metadata/ctf-meta-resolve.cpp @@ -728,8 +728,10 @@ static int64_t get_field_paths_lca_index(struct ctf_field_path *field_path1, if (BT_LOG_ON_TRACE) { GString *field_path1_pretty = ctf_field_path_string(field_path1); GString *field_path2_pretty = ctf_field_path_string(field_path2); - const char *field_path1_pretty_str = field_path1_pretty ? field_path1_pretty->str : "(null)"; - const char *field_path2_pretty_str = field_path2_pretty ? field_path2_pretty->str : "(null)"; + const char *field_path1_pretty_str = + field_path1_pretty ? field_path1_pretty->str : "(null)"; + const char *field_path2_pretty_str = + field_path2_pretty ? field_path2_pretty->str : "(null)"; BT_COMP_LOGD("Finding lowest common ancestor (LCA) between two field paths: " "field-path-1=\"%s\", field-path-2=\"%s\"", -- 2.34.1