Skip to content

Commit cdbd46d

Browse files
committed
Fix one new case
1 parent 335201d commit cdbd46d

File tree

1 file changed

+1
-1
lines changed
  • vm/devices/storage/disk_delay/src

1 file changed

+1
-1
lines changed

vm/devices/storage/disk_delay/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ impl DiskIo for DelayDisk {
117117
sector: u64,
118118
count: u64,
119119
block_level_only: bool,
120-
) -> impl std::future::Future<Output = Result<(), DiskError>> + Send {
120+
) -> impl Future<Output = Result<(), DiskError>> + Send {
121121
self.inner.unmap(sector, count, block_level_only)
122122
}
123123

0 commit comments

Comments
 (0)