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 9bc214b commit e5c5cbbCopy full SHA for e5c5cbb
library/cpp/testing/dump_clang_coverage/write_profile_data.cpp
@@ -121,7 +121,7 @@ void __attribute__((constructor)) premain() {
121
int rc = __llvm_profile_write_file();
122
if (!rc && getenv("YA_COVERAGE_DUMP_PROFILE_EXIT_CODE")) {
123
if (const char* token = getenv("YA_COVERAGE_DUMP_PROFILE_RELIABILITY_TOKEN")) {
124
- fprintf(stdout, token);
+ fprintf(stdout, "%s", token);
125
fflush(stdout);
126
}
127
rc = atoi(getenv("YA_COVERAGE_DUMP_PROFILE_EXIT_CODE"));
0 commit comments