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/Combo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Common/Combo.c') 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) { -- cgit v1.2.3