Skip to content

Commit

Permalink
Merge pull request #3 from Wind-River/vxworks-salim
Browse files Browse the repository at this point in the history
Fixed: error: unnecessary trailing semicolon
  • Loading branch information
BaoshanPang committed Aug 19, 2019
2 parents 403e672 + f0b394b commit 7ab6fa0
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 7ab6fa0

Please sign in to comment.