summaryrefslogtreecommitdiffstats
path: root/util/system/fs.cpp
diff options
context:
space:
mode:
authordvorkanton <[email protected]>2022-02-10 16:46:04 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:04 +0300
commitce1ca0f8ad5b8231d32b35629f85bb09beea1bfb (patch)
tree19b21fdcf9ef01e0c94a15434fb08a4a555a79e9 /util/system/fs.cpp
parentfc361854fd6ee8d747229b090f0b8018e260d1fb (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/system/fs.cpp')
-rw-r--r--util/system/fs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/fs.cpp b/util/system/fs.cpp
index d2611a8ccc4..c2b1ee226b7 100644
--- a/util/system/fs.cpp
+++ b/util/system/fs.cpp
@@ -122,7 +122,7 @@ TString NFs::ReadLink(const TString& path) {
while (true) {
ssize_t r = readlink(path.data(), buf.Data(), buf.Size());
if (r < 0) {
- ythrow yexception() << "can't read link " << path << ", errno = " << errno;
+ ythrow yexception() << "can't read link " << path << ", errno = " << errno;
}
if (r < (ssize_t)buf.Size()) {
return TString(buf.Data(), r);