Add a missing comma to the warning message

This commit is contained in:
Ben Boeckel 2010-09-01 11:26:58 -04:00
parent 74997000c8
commit 2e78224509
1 changed files with 2 additions and 2 deletions

View File

@ -208,8 +208,8 @@ cmake::~cmake()
{
if(!it->second)
{
std::string message = "The variable, \"" + it->first + "\", given "
"on the command line was not used within the build.";
std::string message = "warning: The variable, \"" + it->first + "\", given "
"on the command line, was not used within the build.";
cmSystemTools::Message(message.c_str());
}
}