summaryrefslogtreecommitdiffstats
path: root/util/stream/output.cpp
diff options
context:
space:
mode:
authoraosipenko <[email protected]>2022-02-10 16:48:08 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:48:08 +0300
commit69e3c43df1c96bc2ac8946bf4dfb1f5fc438ff7f (patch)
treeb222e5ac2e2e98872661c51ccceee5da0d291e13 /util/stream/output.cpp
parent948fd24d47d4b3b7815aaef1686aea00ef3f4288 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/stream/output.cpp')
-rw-r--r--util/stream/output.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/stream/output.cpp b/util/stream/output.cpp
index 73f0e97e711..db81b81b701 100644
--- a/util/stream/output.cpp
+++ b/util/stream/output.cpp
@@ -352,11 +352,11 @@ namespace {
void DoWrite(const void* buf, size_t len) override {
if (len != fwrite(buf, 1, len, F_)) {
#if defined(_win_)
- // On Windows, if 'F_' is console -- 'fwrite' returns count of written characters.
- // If, for example, console output codepage is UTF-8, then returned value is
- // not equal to 'len'. So, we ignore some 'errno' values...
+ // On Windows, if 'F_' is console -- 'fwrite' returns count of written characters.
+ // If, for example, console output codepage is UTF-8, then returned value is
+ // not equal to 'len'. So, we ignore some 'errno' values...
if ((errno == 0 || errno == EINVAL || errno == EILSEQ) && _isatty(fileno(F_))) {
- return;
+ return;
}
#endif
ythrow TSystemError() << "write failed";