Revision: 8953 https://osdn.net/projects/ttssh2/scm/svn/commits/8953 Author: zmatsuo Date: 2020-10-03 00:47:17 +0900 (Sat, 03 Oct 2020) Log Message: ----------- TTMessageBoxW() 未初期化メンバ警告が出ないよう修正 - missing initializer for field 'message_key' of 'TTMessageBoxInfoW' Modified Paths: -------------- trunk/teraterm/teraterm/commlib.c -------------- next part -------------- Modified: trunk/teraterm/teraterm/commlib.c =================================================================== --- trunk/teraterm/teraterm/commlib.c 2020-10-02 15:47:06 UTC (rev 8952) +++ trunk/teraterm/teraterm/commlib.c 2020-10-02 15:47:17 UTC (rev 8953) @@ -465,6 +465,7 @@ static const TTMessageBoxInfoW info = { "Tera Term", "MSG_TT_ERROR", L"Tera Term: Error", + NULL, NULL }; switch (err) { @@ -539,6 +540,7 @@ static const TTMessageBoxInfoW info = { "Tera Term", "MSG_TT_ERROR", L"Tera Term: Error", + NULL, NULL }; InvalidHost = TRUE; @@ -562,6 +564,7 @@ static const TTMessageBoxInfoW info = { "Tera Term", "MSG_TT_ERROR", L"Tera Term: Error", + NULL, NULL }; switch (err) {