diff options
author | George Hazan <george.hazan@gmail.com> | 2024-05-07 11:34:00 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-05-07 11:34:04 +0300 |
commit | 2e01b6543458d9e54c99ff7d4d86c9d9e45667d3 (patch) | |
tree | d1cc1958058f5918862f13a07d10d48608d60b8d | |
parent | 94092b46fb9c058ca2ed70e16b6fbdf9b5b464b7 (diff) |
minor code cleaning
-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);
|