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