Skip to content

Commit fb4ca88

Browse files
committed
rustfmt fix
1 parent 38c5de7 commit fb4ca88

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

downstairs/src/region.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1150,9 +1150,7 @@ impl Region {
11501150
let handle = tokio::task::spawn_blocking(
11511151
move || -> Result<(), CrucibleError> {
11521152
let file = File::open(&dir)?;
1153-
let rc = unsafe {
1154-
zfs_fioffs(file.as_raw_fd())
1155-
};
1153+
let rc = unsafe { zfs_fioffs(file.as_raw_fd()) };
11561154
if let Err(e) = rc {
11571155
let e: std::io::Error = e.into();
11581156
Err(CrucibleError::from(e))

0 commit comments

Comments
 (0)