diff options
Diffstat (limited to 'plugins/SendScreenshotPlus/src/dlg_msgbox.cpp')
| -rw-r--r-- | plugins/SendScreenshotPlus/src/dlg_msgbox.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SendScreenshotPlus/src/dlg_msgbox.cpp b/plugins/SendScreenshotPlus/src/dlg_msgbox.cpp index 6f1653590c..bd43096a93 100644 --- a/plugins/SendScreenshotPlus/src/dlg_msgbox.cpp +++ b/plugins/SendScreenshotPlus/src/dlg_msgbox.cpp @@ -700,11 +700,11 @@ INT_PTR CALLBACK MsgBox(HWND hParent, UINT uType, LPCTSTR pszTitle, LPCTSTR pszI  INT_PTR CALLBACK MsgErr(HWND hParent, LPCTSTR pszFormat, ...)  {  	TCHAR tszTitle[MAX_SECONDLINE], tszMsg[MAX_SECONDLINE]; -	mir_sntprintf(tszTitle, _countof(tszMsg), _T("%s - %s"), _T(MODNAME), TranslateT("Error")); +	mir_sntprintf(tszTitle, _T("%s - %s"), _T(MODNAME), TranslateT("Error"));  	va_list vl;  	va_start(vl, pszFormat); -	mir_vsntprintf(tszMsg, _countof(tszMsg), TranslateTS(pszFormat), vl); +	mir_vsntprintf(tszMsg, TranslateTS(pszFormat), vl);  	va_end(vl);  	MSGBOX mb = { 0 };  | 
