about summary refs log tree commit diff
path: root/src/libstd/sys/windows/process.rs
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2016-03-22 17:58:45 -0500
committerJorge Aparicio <japaricious@gmail.com>2016-03-22 22:03:54 -0500
commit2628f3cc8f91a52d9dcc800afb6c4a7dc0c785e0 (patch)
tree218a69ade6504638f42db4f4c855cbd15d29cb73 /src/libstd/sys/windows/process.rs
parentbd71d11a8f75b9957489c795a1551a0cd489eca3 (diff)
downloadrust-2628f3cc8f91a52d9dcc800afb6c4a7dc0c785e0.tar.gz
rust-2628f3cc8f91a52d9dcc800afb6c4a7dc0c785e0.zip
fix alignment
Diffstat (limited to 'src/libstd/sys/windows/process.rs')
-rw-r--r--src/libstd/sys/windows/process.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sys/windows/process.rs b/src/libstd/sys/windows/process.rs
index f479b36ebbd..f4957297581 100644
--- a/src/libstd/sys/windows/process.rs
+++ b/src/libstd/sys/windows/process.rs
@@ -188,9 +188,9 @@ impl Command {
         let stderr = self.stderr.as_ref().unwrap_or(&default);
         let stdin = stdin.to_handle(c::STD_INPUT_HANDLE, &mut pipes.stdin)?;
         let stdout = stdout.to_handle(c::STD_OUTPUT_HANDLE,
-                                           &mut pipes.stdout)?;
+                                      &mut pipes.stdout)?;
         let stderr = stderr.to_handle(c::STD_ERROR_HANDLE,
-                                           &mut pipes.stderr)?;
+                                      &mut pipes.stderr)?;
         si.hStdInput = stdin.raw();
         si.hStdOutput = stdout.raw();
         si.hStdError = stderr.raw();