diff options
author | dvshkurko <dvshkurko@yandex-team.ru> | 2022-02-10 16:45:52 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:52 +0300 |
commit | c768a99151e47c3a4bb7b92c514d256abd301c4d (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/system/file.cpp | |
parent | 321ee9bce31ec6e238be26dbcbe539cffa2c3309 (diff) | |
download | ydb-c768a99151e47c3a4bb7b92c514d256abd301c4d.tar.gz |
Restoring authorship annotation for <dvshkurko@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/file.cpp')
-rw-r--r-- | util/system/file.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/system/file.cpp b/util/system/file.cpp index f677819de6..4a261d020c 100644 --- a/util/system/file.cpp +++ b/util/system/file.cpp @@ -238,9 +238,9 @@ TFileHandle::TFileHandle(const TString& fName, EOpenMode oMode) noexcept { permMode |= S_IRUSR; } - do { - Fd_ = ::open(fName.data(), fcMode, permMode); - } while (Fd_ == -1 && errno == EINTR); + do { + Fd_ = ::open(fName.data(), fcMode, permMode); + } while (Fd_ == -1 && errno == EINTR); #if HAVE_POSIX_FADVISE if (Fd_ >= 0) { |