summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-05-07 11:34:00 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-05-07 11:34:04 +0300
commit2e01b6543458d9e54c99ff7d4d86c9d9e45667d3 (patch)
treed1cc1958058f5918862f13a07d10d48608d60b8d /plugins
parent94092b46fb9c058ca2ed70e16b6fbdf9b5b464b7 (diff)
minor code cleaning
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Msg_Export/src/utils.cpp4
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);