Skip to content

Commit ac34594

Browse files
authored
Rollup merge of #63704 - Wind-River:master, r=Centril
Fixed: error: unnecessary trailing semicolon
2 parents 2c0f05a + 7ab6fa0 commit ac34594

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sys/vxworks/process/process_common.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ impl Command {
155155
_f: Box<dyn FnMut() -> io::Result<()> + Send + Sync>,
156156
) {
157157
// Fork() is not supported in vxWorks so no way to run the closure in the new procecss.
158-
unimplemented!();;
158+
unimplemented!();
159159
}
160160

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

0 commit comments

Comments
 (0)