Fix x64 build error

This commit is contained in:
Don Ho 2022-06-14 15:39:10 +02:00
parent d0b2a9ff9d
commit f69a9093f9
1 changed files with 1 additions and 1 deletions

View File

@ -1660,7 +1660,7 @@ size_t Notepad_plus::getNbDirtyBuffer(int view)
bool Notepad_plus::fileSaveAll()
{
int nbDirty = getNbDirtyBuffer(MAIN_VIEW) + getNbDirtyBuffer(SUB_VIEW);
size_t nbDirty = getNbDirtyBuffer(MAIN_VIEW) + getNbDirtyBuffer(SUB_VIEW);
if (!nbDirty)
return false;