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 ( bPreserve ) {
if ( fstat(fd, &aStatBuf) == -1) { if ( fstat(fd, &aStatBuf) == -1) {
close(fd); close(fd);
std::string sMessage("adjustVisibilty() failed: can't stat file "); std::string sMessage("adjustVisibilty() failed: can't stat file ");
sMessage += rFile; sMessage += rFile;
sMessage += ": "; sMessage += ": ";
sMessage += std::strerror(errno); sMessage += std::strerror(errno);
throw std::runtime_error(sMessage); throw std::runtime_error(sMessage);
} }
} }