diff options
| author | René Schümann <white06tiger@gmail.com> | 2014-06-12 22:16:26 +0000 | 
|---|---|---|
| committer | René Schümann <white06tiger@gmail.com> | 2014-06-12 22:16:26 +0000 | 
| commit | dd8ef0927d28b233599e853870c46b8597b1966b (patch) | |
| tree | 7041e51df1a28d418d983e03d20a8473f37424dd | |
| parent | b0873be517c3307c68ed122d7225ec35c1b0f064 (diff) | |
SendSS:
! fixed wrong printf format. (can cause a crash on x86_64)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9451 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
| -rw-r--r-- | plugins/SendScreenshotPlus/src/UMainForm.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SendScreenshotPlus/src/UMainForm.cpp b/plugins/SendScreenshotPlus/src/UMainForm.cpp index 39f1616774..2b663c3346 100644 --- a/plugins/SendScreenshotPlus/src/UMainForm.cpp +++ b/plugins/SendScreenshotPlus/src/UMainForm.cpp @@ -238,7 +238,7 @@ void TfrmMain::wmInitdialog(WPARAM wParam, LPARAM lParam) {  	ComboBox_SetCurSel (hCtrl,0);  	if(m_MonitorCount >1) {  		TCHAR	tszTemp[120]; -		for (size_t i = 0; i < m_MonitorCount; ++i) { +		for (int i = 0; i < m_MonitorCount; ++i) {  			mir_sntprintf(tszTemp, SIZEOF(tszTemp),_T("%i. %s%s"),  				i+1,  				TranslateT("Monitor"),  | 
