summaryrefslogtreecommitdiffstats
path: root/util/system/file.cpp
diff options
context:
space:
mode:
authorironpeter <[email protected]>2022-02-10 16:49:51 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:49:51 +0300
commitff97837ecc5972a00cb395483d8856566738375c (patch)
treeb2e9b0b27c06242cc2390f3fe726bd2d40758c8f /util/system/file.cpp
parentec31dbabb2178819f10e1dec8f2ae9b2ba551ab1 (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/system/file.cpp')
-rw-r--r--util/system/file.cpp4
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());