variable_watch: Fix a typo in the error message
There was no space between "callback" and the quoted command name.
This commit is contained in:
parent
00ce12a334
commit
05dad99f5a
|
@ -106,7 +106,7 @@ void cmVariableWatchCommand::VariableAccessed(const std::string& variable,
|
||||||
cmOStringStream error;
|
cmOStringStream error;
|
||||||
error << "Error in cmake code at\n"
|
error << "Error in cmake code at\n"
|
||||||
<< arg.FilePath << ":" << arg.Line << ":\n"
|
<< arg.FilePath << ":" << arg.Line << ":\n"
|
||||||
<< "A command failed during the invocation of callback\""
|
<< "A command failed during the invocation of callback \""
|
||||||
<< command << "\".";
|
<< command << "\".";
|
||||||
cmSystemTools::Error(error.str().c_str());
|
cmSystemTools::Error(error.str().c_str());
|
||||||
this->InCallback = false;
|
this->InCallback = false;
|
||||||
|
|
Loading…
Reference in New Issue