summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmIfCommand.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx
index 49e1bdc..b4de8ff 100644
--- a/Source/cmIfCommand.cxx
+++ b/Source/cmIfCommand.cxx
@@ -83,10 +83,10 @@ IsFunctionBlocked(const cmListFileFunction& lff,
mf.ExpandArguments(this->Functions[c].Arguments,
expandedArguments);
- cmake::MessageType status;
+ cmake::MessageType messType;
bool isTrue =
cmIfCommand::IsTrue(expandedArguments, errorString,
- &mf, status);
+ &mf, messType);
if (errorString.size())
{
@@ -102,8 +102,8 @@ IsFunctionBlocked(const cmListFileFunction& lff,
err += "(";
err += errorString;
err += ").";
- mf.IssueMessage(status, err);
- if (status == cmake::FATAL_ERROR)
+ mf.IssueMessage(messType, err);
+ if (messType == cmake::FATAL_ERROR)
{
cmSystemTools::SetFatalErrorOccured();
return true;