diff options
author | ironpeter <[email protected]> | 2022-02-10 16:49:52 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:52 +0300 |
commit | edee5b99e1eec042f46725b89dcd81ea7e41d663 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/system/file.cpp | |
parent | ff97837ecc5972a00cb395483d8856566738375c (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 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 60a2ea666c1..4a261d020cb 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()); |