Skip to content

Commit

Permalink
boot_entries_reader.rs -> boot_entry_iter.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
iTrooz committed Sep 1, 2023
1 parent c437f0d commit 808ffd7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion efivar/src/boot/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! This module handles everything related to boot entries
mod boot_entries_reader;
mod boot_entry_iter;
mod parse;
mod reader;
mod writer;
Expand Down
2 changes: 1 addition & 1 deletion efivar/src/boot/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use byteorder::{LittleEndian, ReadBytesExt};

use crate::{efi::Variable, VarReader};

use super::boot_entries_reader::BootEntriesIterator;
use super::boot_entry_iter::BootEntriesIterator;

pub trait BootVarReader {
fn get_boot_order(&self) -> crate::Result<Vec<u16>>;
Expand Down

0 comments on commit 808ffd7

Please sign in to comment.