diff options
author | ivanmorozov <[email protected]> | 2022-02-10 16:47:33 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:47:33 +0300 |
commit | cba5d9a444e2cfe105f55ccda66cd21d50440017 (patch) | |
tree | 79983e83d1a91aebeb1999338090eec69e24cc33 /util/system/file.cpp | |
parent | eb540cc7a103419462d0cc870ca403966e2194c6 (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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/file.cpp b/util/system/file.cpp index 4a261d020cb..42adcb8b2f2 100644 --- a/util/system/file.cpp +++ b/util/system/file.cpp @@ -1272,7 +1272,7 @@ TFile Duplicate(int fd) { FHANDLE dupHandle; if (!::DuplicateHandle(GetCurrentProcess(), handle, GetCurrentProcess(), &dupHandle, 0, TRUE, DUPLICATE_SAME_ACCESS)) { - ythrow TFileError() << "can not duplicate file descriptor " << LastSystemError() << Endl; + ythrow TFileError() << "can not duplicate file descriptor " << LastSystemError() << Endl; } return TFile(dupHandle); |