Be slightly more accurate in an error message.

llvm-svn: 20397
This commit is contained in:
Reid Spencer 2005-03-02 05:45:56 +00:00
parent fe760deb75
commit a556669219
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ void
Path::getStatusInfo(StatusInfo& info) const {
struct stat buf;
if (0 != stat(path.c_str(), &buf)) {
ThrowErrno(std::string("Can't get status: ")+path);
ThrowErrno(std::string("Can't get status for path: ")+path);
}
info.fileSize = buf.st_size;
info.modTime.fromEpochTime(buf.st_mtime);