fix ref in process_vxworks.rs · qinheping/verify-rust-std@cd0d5be (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Commit cd0d5be
fix ref in process_vxworks.rs
File tree
1 file changed
lines changed
- std/src/sys/pal/unix/process
1 file changed
lines changed
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(ref 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 |