ctf: fix formatting in ctf-meta-resolve.cpp
authorSimon Marchi <simon.marchi@efficios.com>
Tue, 12 Sep 2023 18:18:56 +0000 (14:18 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 15 Sep 2023 20:46:27 +0000 (16:46 -0400)
Run tools/format-cpp.

Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Change-Id: Iea7165c5996b5ce62790ddb9df69e4e8e5014240
Reviewed-on: https://review.lttng.org/c/babeltrace/+/10891
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
src/plugins/ctf/common/metadata/ctf-meta-resolve.cpp

index c77ec46b29c37c9abb3a4e635af968fa2bd4cfc7..4e977a1d57f24414b83d9cd6cb83210e92233183 100644 (file)
@@ -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\"",
This page took 0.027115 seconds and 4 git commands to generate.