Skip to content

Commit fff27a6

Browse files
syntacticallysimongdavies
authored andcommitted
Fix Rust 0.90 Clippy warnings
Signed-off-by: Simon Davies <[email protected]>
1 parent 700db05 commit fff27a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hyperlight_guest_bin/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ fn main() -> std::process::ExitCode {
264264
.args(args)
265265
.status()
266266
.ok()
267-
.and_then(|x| (x.code()))
267+
.and_then(|x| x.code())
268268
.map(|x| (x as u8).into())
269269
.unwrap_or(std::process::ExitCode::FAILURE)
270270
}

0 commit comments

Comments
 (0)