4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 12:59:21 +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
parent 302b82afee
commit 3b80191f33

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);
}
}