From 5dfdc1b4a5000173d01ce4809344c087807350d3 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Mon, 26 Sep 2016 14:12:07 +0200 Subject: Windows: fix compilation warning --- src/Common/BootEncryption.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Common/BootEncryption.cpp b/src/Common/BootEncryption.cpp index 31709763..c3aec66e 100644 --- a/src/Common/BootEncryption.cpp +++ b/src/Common/BootEncryption.cpp @@ -3236,8 +3236,8 @@ namespace VeraCrypt { if (statMem.size == statFile.size) { - Buffer fileBuf (statFile.size); - Buffer memBuf (statMem.size); + Buffer fileBuf ((size_t) statFile.size); + Buffer memBuf ((size_t) statMem.size); zip_file_t* zfMem = zip_fopen_index (zMem, indexMem, 0); if (zfMem) @@ -3249,7 +3249,7 @@ namespace VeraCrypt { if (0 < zip_fread (zfFile, fileBuf.Ptr (), statFile.size)) { - bMatch = (memcmp (memBuf.Ptr(), fileBuf.Ptr(), statFile.size) == 0); + bMatch = (memcmp (memBuf.Ptr(), fileBuf.Ptr(), (size_t) statFile.size) == 0); } zip_fclose (zfFile); } -- cgit v1.2.3