From 7c27ee5587616ef53e4ac33e7a16fb4b5c605c44 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Wed, 27 Mar 2024 10:42:51 -0700 Subject: [PATCH] Use lttng_ust_tracef instead of lttng_ust__tracef Signed-off-by: Christophe Bedard --- test_tracetools/src/mark_process.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_tracetools/src/mark_process.cpp b/test_tracetools/src/mark_process.cpp index a6671428..e3dbe067 100644 --- a/test_tracetools/src/mark_process.cpp +++ b/test_tracetools/src/mark_process.cpp @@ -42,9 +42,9 @@ void mark_trace_test_process() const auto test_id = rcpputils::get_env_var(env_var.c_str()); if (!test_id.empty()) { #if LTTNG_UST_MINOR_VERSION <= 12 - _lttng_ust_tracef("%s=%s", env_var.c_str(), test_id.c_str()); + tracef("%s=%s", env_var.c_str(), test_id.c_str()); #else - lttng_ust__tracef("%s=%s", env_var.c_str(), test_id.c_str()); + lttng_ust_tracef("%s=%s", env_var.c_str(), test_id.c_str()); #endif } #endif // TRACETOOLS_DISABLED