Skip to content

Commit 7ab6fa0

Browse files
authored
Merge pull request #3 from Wind-River/vxworks-salim
Fixed: error: unnecessary trailing semicolon
2 parents 403e672 + f0b394b commit 7ab6fa0

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)