Fix x64 build error

This commit is contained in:
Don Ho 2022-06-14 15:39:10 +02:00
parent d0b2a9ff9d
commit f69a9093f9

View File

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