Skip to content

Commit

Permalink
Rollup merge of rust-lang#63704 - Wind-River:master, r=Centril
Browse files Browse the repository at this point in the history
 Fixed: error: unnecessary trailing semicolon
  • Loading branch information
Centril committed Aug 19, 2019
2 parents 2c0f05a + 7ab6fa0 commit ac34594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/sys/vxworks/process/process_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ impl Command {
_f: Box<dyn FnMut() -> io::Result<()> + Send + Sync>,
) {
// Fork() is not supported in vxWorks so no way to run the closure in the new procecss.
unimplemented!();;
unimplemented!();
}

pub fn stdin(&mut self, stdin: Stdio) {
Expand Down

0 comments on commit ac34594

Please sign in to comment.