mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-25 06:45:27 +02:00
Fix x86 build error
This commit is contained in:
parent
a49f027195
commit
fce153a5fe
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user