Update library/std/src/sys/pal/unix/process/process_vxworks.rs · qinheping/verify-rust-std@7153288 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 7153288

nyurikcuviper

and

committed

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

Co-authored-by: Josh Stone cuviper@gmail.com

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 1 addition & 1 deletion

Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ impl Command {
57 57 t!(cvt_r(|
58 58 }
59 59
60 -if let Some(cwd) = *self.get_cwd() {
60 +if let Some(cwd) = self.get_cwd() {
61 61 t!(cvt(libc::chdir(cwd.as_ptr())));
62 62 }
63 63