aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/System/Unix/Path.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc
index 99923335c5..e37741bc26 100644
--- a/lib/System/Unix/Path.inc
+++ b/lib/System/Unix/Path.inc
@@ -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);