Quellcode durchsuchen

Update process_unix.rs (#17)

GnoCiYeH vor 1 Jahr
Ursprung
Commit
48d9fba9a5
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      src/std/sys/unix/process/process_unix.rs

+ 2 - 2
src/std/sys/unix/process/process_unix.rs

@@ -72,8 +72,8 @@ cfg_if::cfg_if! {
 impl Command {
     pub fn spawn(
         &mut self,
-        _default: Stdio,
-        _needs_stdin: bool,
+        default: Stdio,
+        needs_stdin: bool,
     ) -> io::Result<(Process, StdioPipes)> {
         const CLOEXEC_MSG_FOOTER: [u8; 4] = *b"NOEX";
         let envp = self.capture_env();