diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2018-12-06 15:28:16 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2018-12-06 15:28:16 (GMT) |
commit | 31840e363f61c10770a3d22467396c05e7d3d422 (patch) | |
tree | fb61c47267056ecf0017ed02bd66f4069d74f85c /Source/cmFileCommand.cxx | |
parent | 98a39be6cfb7b229ff78f7045c6d5bcd6b6c7509 (diff) | |
download | CMake-31840e363f61c10770a3d22467396c05e7d3d422.zip CMake-31840e363f61c10770a3d22467396c05e7d3d422.tar.gz CMake-31840e363f61c10770a3d22467396c05e7d3d422.tar.bz2 |
file: Fix formatting of error in SIZE sub-command
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 7fc717d..fb8e8d3 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -3630,7 +3630,7 @@ bool cmFileCommand::HandleSizeCommand(std::vector<std::string> const& args) if (!cmSystemTools::FileExists(filename, true)) { std::ostringstream e; - e << "SIZE requested of path that is not readable " << filename; + e << "SIZE requested of path that is not readable:\n " << filename; this->SetError(e.str()); return false; } |