Rollup merge of #63704 - Wind-River:master, r=Centril

Fixed: error: unnecessary trailing semicolon
This commit is contained in:
Mazdak Farrokhzad 2019-08-19 22:48:59 +02:00 committed by GitHub
commit ac34594209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {