summaryrefslogtreecommitdiffstats
path: root/Source/cmConfigureFileCommand.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-01-10 21:22:14 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-01-10 21:22:14 (GMT)
commit1793b70c56aec8747529976f031a87d7774c04af (patch)
treeac8b017ff4a2ad21649e16fe23da99017c18801e /Source/cmConfigureFileCommand.cxx
parentc213a8bcd8b90ca3298f9a1905338c06f9961a66 (diff)
downloadCMake-1793b70c56aec8747529976f031a87d7774c04af.zip
CMake-1793b70c56aec8747529976f031a87d7774c04af.tar.gz
CMake-1793b70c56aec8747529976f031a87d7774c04af.tar.bz2
Add space to output
Diffstat (limited to 'Source/cmConfigureFileCommand.cxx')
-rw-r--r--Source/cmConfigureFileCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmConfigureFileCommand.cxx b/Source/cmConfigureFileCommand.cxx
index 8792a46..e2bc759 100644
--- a/Source/cmConfigureFileCommand.cxx
+++ b/Source/cmConfigureFileCommand.cxx
@@ -117,14 +117,14 @@ void cmConfigureFileCommand::ConfigureFile()
std::ofstream fout(tempOutputFile.c_str());
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());
return;
}
std::ifstream fin(m_InputFile.c_str());
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());
return;
}