Skip to content

Commit f8436db

Browse files
committed
minor nit
1 parent f5737bf commit f8436db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/sys/pal/unix/process/process_unix.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl Command {
191191

192192
// Attempts to fork the process. If successful, returns Ok((0, -1))
193193
// in the child, and Ok((child_pid, -1)) in the parent.
194-
#[cfg(not(any(target_os = "watchos", target_os = "tvos", target_os = "nto",)))]
194+
#[cfg(not(any(target_os = "watchos", target_os = "tvos", target_os = "nto")))]
195195
unsafe fn do_fork(&mut self) -> Result<pid_t, io::Error> {
196196
cvt(libc::fork())
197197
}

0 commit comments

Comments
 (0)