Add space to output
This commit is contained in:
parent
c213a8bcd8
commit
1793b70c56
@ -117,14 +117,14 @@ void cmConfigureFileCommand::ConfigureFile()
|
|||||||
std::ofstream fout(tempOutputFile.c_str());
|
std::ofstream fout(tempOutputFile.c_str());
|
||||||
if(!fout)
|
if(!fout)
|
||||||
{
|
{
|
||||||
cmSystemTools::Error("Could not open file for write in copy operatation",
|
cmSystemTools::Error("Could not open file for write in copy operatation ",
|
||||||
tempOutputFile.c_str());
|
tempOutputFile.c_str());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
std::ifstream fin(m_InputFile.c_str());
|
std::ifstream fin(m_InputFile.c_str());
|
||||||
if(!fin)
|
if(!fin)
|
||||||
{
|
{
|
||||||
cmSystemTools::Error("Could not open file for read in copy operatation",
|
cmSystemTools::Error("Could not open file for read in copy operatation ",
|
||||||
m_InputFile.c_str());
|
m_InputFile.c_str());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user