summaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/testing/dump_clang_coverage/write_profile_data.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/testing/dump_clang_coverage/write_profile_data.cpp b/library/cpp/testing/dump_clang_coverage/write_profile_data.cpp
index 7efdc21e0eb..13d3f918c7b 100644
--- a/library/cpp/testing/dump_clang_coverage/write_profile_data.cpp
+++ b/library/cpp/testing/dump_clang_coverage/write_profile_data.cpp
@@ -121,7 +121,7 @@ void __attribute__((constructor)) premain() {
int rc = __llvm_profile_write_file();
if (!rc && getenv("YA_COVERAGE_DUMP_PROFILE_EXIT_CODE")) {
if (const char* token = getenv("YA_COVERAGE_DUMP_PROFILE_RELIABILITY_TOKEN")) {
- fprintf(stdout, token);
+ fprintf(stdout, "%s", token);
fflush(stdout);
}
rc = atoi(getenv("YA_COVERAGE_DUMP_PROFILE_EXIT_CODE"));