Skip to content

Commit a8311c3

Browse files
committed
formatting fix in shims/unix/fs.rs
1 parent 99e3391 commit a8311c3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/shims/unix/fs.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,11 @@ trait EvalContextExtPrivate<'tcx>: crate::MiriInterpCxExt<'tcx> {
335335
Err(e) =>
336336
match e.raw_os_error() {
337337
Some(error) => Ok(error),
338-
None => {
338+
None =>
339339
throw_unsup_format!(
340340
"the error {} couldn't be converted to a return value",
341341
e
342-
)
343-
}
342+
),
344343
},
345344
}
346345
}

0 commit comments

Comments
 (0)