adjust indent

This commit is contained in:
Caolán McNamara 2011-01-07 11:07:24 +00:00
parent ae00a3d7d6
commit 3505b4288e

View file

@ -243,11 +243,11 @@ void processObject(const std::string& rFile, bool bPreserve, bool bVerbose)
if ( bPreserve ) {
if ( fstat(fd, &aStatBuf) == -1) {
close(fd);
std::string sMessage("adjustVisibilty() failed: can't stat file ");
sMessage += rFile;
sMessage += ": ";
sMessage += std::strerror(errno);
throw std::runtime_error(sMessage);
std::string sMessage("adjustVisibilty() failed: can't stat file ");
sMessage += rFile;
sMessage += ": ";
sMessage += std::strerror(errno);
throw std::runtime_error(sMessage);
}
}