Browse Source

Add space to output

Andy Cedilnik 24 years ago
parent
commit
1793b70c56
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/cmConfigureFileCommand.cxx

+ 2 - 2
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;
       }