Skip to content

Commit f0b394b

Browse files
committed
Fixed: error: unnecessary trailing semicolon
1 parent 403e672 commit f0b394b

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)