Fix x86 build error

This commit is contained in:
Don HO 2020-05-31 12:21:59 +02:00
parent a49f027195
commit fce153a5fe
1 changed files with 1 additions and 1 deletions

View File

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