diff options
author | Andy Yankovsky <weratt@gmail.com> | 2022-02-10 16:51:47 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:47 +0300 |
commit | eb5cbe9cc9378175003bc6a0cc9e955508d745fb (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb | |
parent | eb7f3438204b3bcea15c4ea71fd72d50dc8a8864 (diff) | |
download | ydb-eb5cbe9cc9378175003bc6a0cc9e955508d745fb.tar.gz |
Restoring authorship annotation for Andy Yankovsky <weratt@gmail.com>. Commit 2 of 2.
-rw-r--r-- | util/system/shellcommand.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/system/shellcommand.cpp b/util/system/shellcommand.cpp index 31c7365db8..b1989b5c8c 100644 --- a/util/system/shellcommand.cpp +++ b/util/system/shellcommand.cpp @@ -970,9 +970,9 @@ void TShellCommand::TImpl::Communicate(TProcessInfo* pi) { continue; } - struct pollfd fds[] = { - {REALPIPEHANDLE(pi->InputFd), POLLOUT, 0}, - {REALPIPEHANDLE(pi->OutputFd), POLLIN, 0}, + struct pollfd fds[] = { + {REALPIPEHANDLE(pi->InputFd), POLLOUT, 0}, + {REALPIPEHANDLE(pi->OutputFd), POLLIN, 0}, {REALPIPEHANDLE(pi->ErrorFd), POLLIN, 0}}; int res; |