diff options
author | qwerty <qwerty@yandex-team.ru> | 2022-02-10 16:49:24 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:24 +0300 |
commit | 34e37ee57f5837a8da2fdfaccaac9bbe6c7f02ba (patch) | |
tree | c9e2dc7251a6743c4352ec4a4c717b18a1bd4da7 /util/stream/pipe.cpp | |
parent | 19bd45eb7775ffded0c62ab05d10b7326198aaa6 (diff) | |
download | ydb-34e37ee57f5837a8da2fdfaccaac9bbe6c7f02ba.tar.gz |
Restoring authorship annotation for <qwerty@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/stream/pipe.cpp')
-rw-r--r-- | util/stream/pipe.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/stream/pipe.cpp b/util/stream/pipe.cpp index 51be1934a7..e197560a93 100644 --- a/util/stream/pipe.cpp +++ b/util/stream/pipe.cpp @@ -93,7 +93,7 @@ TPipedBase::~TPipedBase() { } } -TPipedInput::TPipedInput(PIPEHANDLE fd) +TPipedInput::TPipedInput(PIPEHANDLE fd) : TPipedBase(fd) { } @@ -104,7 +104,7 @@ size_t TPipedInput::DoRead(void* buf, size_t len) { if (!Handle_.IsOpen()) { return 0; } - return Handle_.Read(buf, len); + return Handle_.Read(buf, len); } TPipedOutput::TPipedOutput(PIPEHANDLE fd) |