diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/stdfile/filesenddlg.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/stdfile/filesenddlg.cpp b/src/core/stdfile/filesenddlg.cpp index ab9dc3eb57..7f6067dbf7 100644 --- a/src/core/stdfile/filesenddlg.cpp +++ b/src/core/stdfile/filesenddlg.cpp @@ -29,7 +29,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. static void SetFileListAndSizeControls(HWND hwndDlg, FileDlgData *dat)
{
- int fileCount = 0, dirCount = 0, totalSize = 0, i;
+ int fileCount = 0, dirCount = 0, i;
+ __int64 totalSize = 0;
struct _stat statbuf;
TCHAR str[64];
|