Index: src/ch/FeedbackNotEnoughSpaceDlg.cpp =================================================================== diff -u -N -ra27d1acf1bda3c25b6dcce0d0eb0278009ce63ae -r8dc649003961dad64b92da67426814fb5dd862e0 --- src/ch/FeedbackNotEnoughSpaceDlg.cpp (.../FeedbackNotEnoughSpaceDlg.cpp) (revision a27d1acf1bda3c25b6dcce0d0eb0278009ce63ae) +++ src/ch/FeedbackNotEnoughSpaceDlg.cpp (.../FeedbackNotEnoughSpaceDlg.cpp) (revision 8dc649003961dad64b92da67426814fb5dd862e0) @@ -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)); unsigned long long 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)