summaryrefslogtreecommitdiffstats
path: root/util/system/shellcommand.cpp
diff options
context:
space:
mode:
authorAndy Yankovsky <[email protected]>2022-02-10 16:51:46 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:51:46 +0300
commiteb7f3438204b3bcea15c4ea71fd72d50dc8a8864 (patch)
tree3e3db9b9cf92e224f4b8d3f75884caa54641b57f /util/system/shellcommand.cpp
parente788f54875144a0c5a0d4df2e4060d808cb719df (diff)
Restoring authorship annotation for Andy Yankovsky <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/system/shellcommand.cpp')
-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 b1989b5c8c3..31c7365db8b 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;