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:
Ben Boeckel 2013-08-02 15:49:50 -04:00 committed by Brad King
parent 00ce12a334
commit 05dad99f5a
1 changed files with 1 additions and 1 deletions

View File

@ -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;