diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2025-07-07 10:50:12 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2025-07-07 11:05:47 +0300 |
commit | e5c5cbb68aa62aa86bb74ee23e646ec47029dd87 (patch) | |
tree | 1f08caaa393686adf93af3ed1f8b772e0b33478b /library/cpp/testing/dump_clang_coverage/write_profile_data.cpp | |
parent | 9bc214ba075c1e778ab6e2c93e0a9108109a963a (diff) | |
download | ydb-e5c5cbb68aa62aa86bb74ee23e646ec47029dd87.tar.gz |
Intermediate changes
commit_hash:fa96a59fd0ca24e8960823b1caa0a213f446e8ff
Diffstat (limited to 'library/cpp/testing/dump_clang_coverage/write_profile_data.cpp')
-rw-r--r-- | library/cpp/testing/dump_clang_coverage/write_profile_data.cpp | 2 |
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")); |