about summary refs log tree commit diff
path: root/src/libstd/sys/cloudabi/shims/process.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/sys/cloudabi/shims/process.rs')
-rw-r--r--src/libstd/sys/cloudabi/shims/process.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libstd/sys/cloudabi/shims/process.rs b/src/libstd/sys/cloudabi/shims/process.rs
index 03a59d6d7c8..4702e5c5492 100644
--- a/src/libstd/sys/cloudabi/shims/process.rs
+++ b/src/libstd/sys/cloudabi/shims/process.rs
@@ -32,9 +32,7 @@ pub enum Stdio {
 
 impl Command {
     pub fn new(_program: &OsStr) -> Command {
-        Command {
-            env: Default::default(),
-        }
+        Command { env: Default::default() }
     }
 
     pub fn arg(&mut self, _arg: &OsStr) {}