From 2e01b6543458d9e54c99ff7d4d86c9d9e45667d3 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 7 May 2024 11:34:00 +0300 Subject: minor code cleaning --- plugins/Msg_Export/src/utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Msg_Export') 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); -- cgit v1.2.3