From 46a3fe1458b6d34eb5f1b97e8fc6f60656cb3611 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sun, 11 Jun 2017 11:07:51 +0200 Subject: Windows: fix compiler warnings --- src/Common/BootEncryption.cpp | 2 -- src/Common/Combo.c | 2 +- src/Common/Dlgcode.c | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) (limited to 'src/Common') diff --git a/src/Common/BootEncryption.cpp b/src/Common/BootEncryption.cpp index 1c68a2fe..b2ab9f2a 100644 --- a/src/Common/BootEncryption.cpp +++ b/src/Common/BootEncryption.cpp @@ -2223,8 +2223,6 @@ namespace VeraCrypt } void EfiBoot::MountBootPartition(WCHAR letter) { - NTSTATUS res; - ULONG len; if (!bBootVolumePathSelected) { SelectBootVolumeESP(); } diff --git a/src/Common/Combo.c b/src/Common/Combo.c index 50e9761c..ab550a14 100644 --- a/src/Common/Combo.c +++ b/src/Common/Combo.c @@ -142,7 +142,7 @@ void LoadCombo (HWND hComboBox, BOOL bEnabled, BOOL bOnlyCheckModified, BOOL *pb char *xml = history; char volume[MAX_PATH]; int i, nComboIdx[SIZEOF_MRU_LIST] = {0}; - int count = SendMessage (hComboBox, CB_GETCOUNT, 0, 0); + int count = (int) SendMessage (hComboBox, CB_GETCOUNT, 0, 0); if (xml == NULL) { diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index f21d551f..ccd44e16 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -3416,7 +3416,7 @@ BOOL CALLBACK TextEditDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa if (!prm->ReadOnly) { prm->Text.resize(GetWindowTextLengthA (GetDlgItem (hwndDlg, IDC_INFO_BOX_TEXT)) + 1); - GetWindowTextA (GetDlgItem (hwndDlg, IDC_INFO_BOX_TEXT), &(prm->Text)[0], prm->Text.size()); + GetWindowTextA (GetDlgItem (hwndDlg, IDC_INFO_BOX_TEXT), &(prm->Text)[0], (int) prm->Text.size()); } NormalCursor (); EndDialog (hwndDlg, IDOK); -- cgit v1.2.3