diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Msg_Export/src/utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Msg_Export/src/utils.cpp b/plugins/Msg_Export/src/utils.cpp index 88190f67e4..36c3f92d52 100644 --- a/plugins/Msg_Export/src/utils.cpp +++ b/plugins/Msg_Export/src/utils.cpp @@ -740,12 +740,12 @@ static bool ExportDBEventInfo(MCONTACT hContact, HANDLE hFile, const wstring &sF }
if (blob.isOffline()) {
- CMStringW val(FORMAT, L"%d", blob.getSize());
+ CMStringW val(FORMAT, L"%lld", blob.getSize());
bWriteNewLine(hFile, nIndent);
bWriteTextToFile(hFile, LPGENW("Size: "), bWriteUTF8Format);
bWriteIndentedToFile(hFile, nIndent, val, bWriteUTF8Format);
- val.Format(L"%d", blob.getTransferred());
+ val.Format(L"%lld", blob.getTransferred());
bWriteNewLine(hFile, nIndent);
bWriteTextToFile(hFile, LPGENW("Transferred: "), bWriteUTF8Format);
bWriteIndentedToFile(hFile, nIndent, val, bWriteUTF8Format);
|