diff options
author | dvorkanton <[email protected]> | 2022-02-10 16:46:04 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:04 +0300 |
commit | ce1ca0f8ad5b8231d32b35629f85bb09beea1bfb (patch) | |
tree | 19b21fdcf9ef01e0c94a15434fb08a4a555a79e9 /util/system/fs.cpp | |
parent | fc361854fd6ee8d747229b090f0b8018e260d1fb (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/system/fs.cpp')
-rw-r--r-- | util/system/fs.cpp | 2 |
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); |