Fix x86 build error

This commit is contained in:
Don HO 2020-05-31 12:21:59 +02:00
parent a49f027195
commit fce153a5fe

View File

@ -765,7 +765,7 @@ generic_string Notepad_plus::exts2Filters(const generic_string& exts, int maxExt
} }
j = 0; j = 0;
if (maxExtsLen != -1 && i >= maxExtsLen) if (maxExtsLen != -1 && i >= static_cast<size_t>(maxExtsLen))
{ {
filters += TEXT(" ... "); filters += TEXT(" ... ");
break; break;