4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-02 04:20:28 +08:00

Cygwin: testsuite: fix insecure usage of printf in libltp

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2020-11-16 15:55:15 +01:00 committed by Ken Brown
parent 862bdb3880
commit b300092e4b

View File

@ -583,7 +583,7 @@ STD_opts_help()
for(i = 0; std_options[i].optstr; ++i) {
if (std_options[i].help)
printf(std_options[i].help);
fputs(std_options[i].help, stdout);
}
}