We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78643c8 commit 7159305Copy full SHA for 7159305
src/efi/block.rs
@@ -190,7 +190,7 @@ impl<'a> BlockWrapper<'a> {
190
AllocateType::AllocateAnyPages,
191
MemoryType::LoaderData,
192
((size + super::PAGE_SIZE as usize - 1) / super::PAGE_SIZE as usize) as u64,
193
- 0 as u64,
+ 0_u64,
194
);
195
196
let bw = new_address as *mut BlockWrapper;
src/efi/file.rs
@@ -213,7 +213,7 @@ impl<'a> FileSystemWrapper<'a> {
213
214
215
216
217
218
219
if status == Status::SUCCESS {
0 commit comments