Revision: 7651 https://osdn.net/projects/ttssh2/scm/svn/commits/7651 Author: yutakapon Date: 2019-05-07 19:23:51 +0900 (Tue, 07 May 2019) Log Message: ----------- r7643における英語ドキュメントの更新漏れ。 Modified Paths: -------------- trunk/doc/en/html/reference/sourcecode.html -------------- next part -------------- Modified: trunk/doc/en/html/reference/sourcecode.html =================================================================== --- trunk/doc/en/html/reference/sourcecode.html 2019-05-06 14:13:54 UTC (rev 7650) +++ trunk/doc/en/html/reference/sourcecode.html 2019-05-07 10:23:51 UTC (rev 7651) @@ -434,7 +434,7 @@ char tmp[1024]; va_list arg; va_start(arg, fmt); - _vsnprintf(tmp, sizeof(tmp), fmt, arg); + _vsnprintf_s(tmp, sizeof(tmp), _TRUNCATE, fmt, arg); OutputDebugString(tmp); } </pre>