diff options
author | ironpeter <[email protected]> | 2022-02-10 16:49:51 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:51 +0300 |
commit | ff97837ecc5972a00cb395483d8856566738375c (patch) | |
tree | b2e9b0b27c06242cc2390f3fe726bd2d40758c8f /util/system/file.cpp | |
parent | ec31dbabb2178819f10e1dec8f2ae9b2ba551ab1 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/system/file.cpp')
-rw-r--r-- | util/system/file.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/system/file.cpp b/util/system/file.cpp index 4a261d020cb..60a2ea666c1 100644 --- a/util/system/file.cpp +++ b/util/system/file.cpp @@ -255,9 +255,9 @@ TFileHandle::TFileHandle(const TString& fName, EOpenMode oMode) noexcept { if (oMode & NoReadAhead) { ::posix_fadvise(Fd_, 0, 0, POSIX_FADV_RANDOM); } - } + } #endif - + //temp file if (Fd_ >= 0 && (oMode & Transient)) { unlink(fName.data()); |