applied patch #1722147 - equalized compiler errors

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5151 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-05-23 14:14:38 +00:00
parent cd72a50a07
commit ce67363581

View file

@ -2270,14 +2270,14 @@ int CEXEBuild::check_write_output_errors() const
if (cur_page)
{
ERROR_MSG("Error: PageEx still open at EOF, cannot proceed\n");
ERROR_MSG("Error: PageEx left open at EOF\n");
return PS_ERROR;
}
// deal with functions, for both install and uninstall modes.
if (build_cursection_isfunc)
{
ERROR_MSG("Error: Function still open at EOF, cannot proceed\n");
ERROR_MSG("Error: Function left open at EOF\n");
return PS_ERROR;
}