From d5caa9b18583a3d98d73d87270248b3aa3b1b153 Mon Sep 17 00:00:00 2001 From: wizou Date: Tue, 6 Dec 2011 21:24:56 +0000 Subject: [PATCH] fix Unicode compilation git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6202 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/script.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/script.cpp b/Source/script.cpp index 46b49bf4..f309624e 100644 --- a/Source/script.cpp +++ b/Source/script.cpp @@ -3467,7 +3467,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line) if (!numconv || v < 0 || v > 4 ) { // < 2.47 would reset level to 0 without warning! - ERROR_MSG("!verbose: Invalid verbose level\n"); + ERROR_MSG(_T("!verbose: Invalid verbose level\n")); return PS_ERROR; } } @@ -3484,7 +3484,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line) } else { - warning_fl("!verbose: Pop failed, stack is empty"); + warning_fl(_T("!verbose: Pop failed, stack is empty")); continue; // Pop failed, should still process the next parameter } }