1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-12 19:38:26 -06:00

Windows: fix compiler warnings

This commit is contained in:
Mounir IDRASSI
2017-06-11 11:07:51 +02:00
parent 6ed9773894
commit 46a3fe1458
6 changed files with 15 additions and 17 deletions

View File

@@ -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)
{