On 10/09/17 12:23, Gijs Vermeulen wrote:
> @@ -5320,7 +5320,7 @@ int CDECL MSVCRT_printf_s(const char *format, ...)
> __ms_va_list valist;
> int res;
> __ms_va_start(valist, format);
> - res = MSVCRT_vprintf_s(format, valist);
> + res = MSVCRT_vfprintf_s(MSVCRT_stdout, format, valist);
I don't think this code needs to be changed. It's just a matter of taste
so I would leave it as is.
Thanks,
Piotr