We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4031a40 commit 513bd86Copy full SHA for 513bd86
test_tracetools/src/mark_process.cpp
@@ -42,9 +42,9 @@ void mark_trace_test_process()
42
const auto test_id = rcpputils::get_env_var(env_var.c_str());
43
if (!test_id.empty()) {
44
#if LTTNG_UST_MINOR_VERSION <= 12
45
- _lttng_ust_tracef("%s=%s", env_var.c_str(), test_id.c_str());
+ tracef("%s=%s", env_var.c_str(), test_id.c_str());
46
#else
47
- 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());
48
#endif
49
}
50
#endif // TRACETOOLS_DISABLED
0 commit comments