aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Yankovsky <weratt@gmail.com>2022-02-10 16:51:47 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:51:47 +0300
commiteb5cbe9cc9378175003bc6a0cc9e955508d745fb (patch)
treeab7fbbf3253d4c0e2793218f09378908beb025fb
parenteb7f3438204b3bcea15c4ea71fd72d50dc8a8864 (diff)
downloadydb-eb5cbe9cc9378175003bc6a0cc9e955508d745fb.tar.gz
Restoring authorship annotation for Andy Yankovsky <weratt@gmail.com>. Commit 2 of 2.
-rw-r--r--util/system/shellcommand.cpp6
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;