Fix storage size variables, use qint64.

Fixes #4110.
This commit is contained in:
John Preston 2017-12-03 20:51:19 +04:00
parent f3c8da4819
commit 629c216a7f
1 changed files with 1 additions and 1 deletions

View File

@ -635,7 +635,7 @@ FileKey _langPackKey = 0;
typedef QMap<StorageKey, FileDesc> StorageMap;
StorageMap _imagesMap, _stickerImagesMap, _audiosMap;
int32 _storageImagesSize = 0, _storageStickersSize = 0, _storageAudiosSize = 0;
qint64 _storageImagesSize = 0, _storageStickersSize = 0, _storageAudiosSize = 0;
bool _mapChanged = false;
int32 _oldMapVersion = 0, _oldSettingsVersion = 0;