Index: src/ch/FeedbackNotEnoughSpaceDlg.cpp
===================================================================
diff -u -N -r671f4b1792a20d98b186f4e0a9cc6a620dede019 -ra13bee8e2ecd1e8f61be0aa9b51d99acdc43a5d0
--- src/ch/FeedbackNotEnoughSpaceDlg.cpp	(.../FeedbackNotEnoughSpaceDlg.cpp)	(revision 671f4b1792a20d98b186f4e0a9cc6a620dede019)
+++ src/ch/FeedbackNotEnoughSpaceDlg.cpp	(.../FeedbackNotEnoughSpaceDlg.cpp)	(revision a13bee8e2ecd1e8f61be0aa9b51d99acdc43a5d0)
@@ -76,14 +76,13 @@
 		pWnd->SetWindowText(fmt);
 
 	// now the sizes
-	TCHAR szData[128];
 	pWnd=GetDlgItem(IDC_REQUIRED_STATIC);
 	if (pWnd)
-		pWnd->SetWindowText(GetSizeString(m_ullRequired, szData, 128));
+		pWnd->SetWindowText(GetSizeString(m_ullRequired));
 	ull_t ullFree;
 	pWnd=GetDlgItem(IDC_AVAILABLE_STATIC);
 	if (pWnd && GetDynamicFreeSpace(m_strDisk, &ullFree, NULL))
-		pWnd->SetWindowText(GetSizeString(ullFree, szData, 128));
+		pWnd->SetWindowText(GetSizeString(ullFree));
 }
 
 BOOL CFeedbackNotEnoughSpaceDlg::OnInitDialog() 
@@ -133,8 +132,7 @@
 		CWnd *pWnd=GetDlgItem(IDC_AVAILABLE_STATIC);
 		if (pWnd && GetDynamicFreeSpace(m_strDisk, &ullFree, NULL))
 		{
-			TCHAR szData[128];
-			pWnd->SetWindowText(GetSizeString(ullFree, szData, 128));
+			pWnd->SetWindowText(GetSizeString(ullFree));
 
 			// end dialog if this is enough
 			if (m_ullRequired <= ullFree)