summaryrefslogtreecommitdiffstats
path: root/util/system/shellcommand.cpp
diff options
context:
space:
mode:
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;