Vulkan: Fix fprintf format-security warning (#14770)
This commit is contained in:
parent
f0d4d176df
commit
83f5872404
|
@ -765,8 +765,8 @@ void write_output_files() {
|
|||
len += "};\n";
|
||||
}
|
||||
}
|
||||
fprintf(src, data.c_str());
|
||||
fprintf(src, len.c_str());
|
||||
fputs(data.c_str(), src);
|
||||
fputs(len.c_str(), src);
|
||||
}
|
||||
fclose(hdr);
|
||||
fclose(src);
|
||||
|
|
Loading…
Reference in New Issue