Skip to content

Commit 513bd86

Browse files
Use lttng_ust_tracef instead of lttng_ust__tracef (#103)
Signed-off-by: Christophe Bedard <[email protected]>
1 parent 4031a40 commit 513bd86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_tracetools/src/mark_process.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ void mark_trace_test_process()
4242
const auto test_id = rcpputils::get_env_var(env_var.c_str());
4343
if (!test_id.empty()) {
4444
#if LTTNG_UST_MINOR_VERSION <= 12
45-
_lttng_ust_tracef("%s=%s", env_var.c_str(), test_id.c_str());
45+
tracef("%s=%s", env_var.c_str(), test_id.c_str());
4646
#else
47-
lttng_ust__tracef("%s=%s", env_var.c_str(), test_id.c_str());
47+
lttng_ust_tracef("%s=%s", env_var.c_str(), test_id.c_str());
4848
#endif
4949
}
5050
#endif // TRACETOOLS_DISABLED

0 commit comments

Comments
 (0)