Skip to content

Commit cd0d5be

Browse files
committed
fix ref in process_vxworks.rs
1 parent 01e7f5f commit cd0d5be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/src/sys/pal/unix/process/process_vxworks.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl Command {
5757
t!(cvt_r(|| libc::dup2(fd, libc::STDERR_FILENO)));
5858
}
5959

60-
if let Some(ref cwd) = *self.get_cwd() {
60+
if let Some(cwd) = *self.get_cwd() {
6161
t!(cvt(libc::chdir(cwd.as_ptr())));
6262
}
6363

0 commit comments

Comments
 (0)