From 0d39935a51c5d065c6e943a4f087ec1f7941feee Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 22 Aug 2006 05:28:38 +0000 Subject: [PATCH] Make an error message a little more intelligible. llvm-svn: 29808 --- lib/System/Unix/Path.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc index f79b2b2064a..bd29d8da8d1 100644 --- a/lib/System/Unix/Path.inc +++ b/lib/System/Unix/Path.inc @@ -352,7 +352,7 @@ bool Path::getFileStatus(FileStatus &info, std::string *ErrStr) const { struct stat buf; if (0 != stat(path.c_str(), &buf)) - return GetErrno(path + ": can't determine type of path object: ", ErrStr); + return GetErrno(path + ": can't get status of file '" + path + "'", ErrStr); info.fileSize = buf.st_size; info.modTime.fromEpochTime(buf.st_mtime); info.mode = buf.st_mode;