From ce67363581a887012a371ea97f02847f2c3de07f Mon Sep 17 00:00:00 2001 From: kichik Date: Wed, 23 May 2007 14:14:38 +0000 Subject: [PATCH] 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 --- Source/build.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/build.cpp b/Source/build.cpp index 8a962c87..cdfc916c 100644 --- a/Source/build.cpp +++ b/Source/build.cpp @@ -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; }