oops
This commit is contained in:
parent
d6061c5dff
commit
363530e394
2 changed files with 2 additions and 3 deletions
|
@ -9,7 +9,7 @@ fn recurse_device_path(
|
||||||
mut uuid: Option<u128>,
|
mut uuid: Option<u128>,
|
||||||
mut path: Option<String>,
|
mut path: Option<String>,
|
||||||
) -> (Option<u128>, Option<String>) {
|
) -> (Option<u128>, Option<String>) {
|
||||||
match dbg!(&a.info) {
|
match &a.info {
|
||||||
DevicePathInfo::HardDrive {
|
DevicePathInfo::HardDrive {
|
||||||
partition_signature,
|
partition_signature,
|
||||||
signature_type,
|
signature_type,
|
||||||
|
|
|
@ -14,7 +14,6 @@ use std::path::PathBuf;
|
||||||
|
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
use color_eyre::eyre::{self, Context};
|
use color_eyre::eyre::{self, Context};
|
||||||
use drop_ins::FindDropIn;
|
|
||||||
use fallible_iterator::FallibleIterator;
|
use fallible_iterator::FallibleIterator;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
use typed_path::{Utf8UnixEncoding, Utf8WindowsPathBuf};
|
use typed_path::{Utf8UnixEncoding, Utf8WindowsPathBuf};
|
||||||
|
@ -23,7 +22,7 @@ use uefi_eventlog::EventType;
|
||||||
|
|
||||||
use crate::args::Args;
|
use crate::args::Args;
|
||||||
use crate::device_path::traverse_device_path;
|
use crate::device_path::traverse_device_path;
|
||||||
use crate::drop_ins::DropIns;
|
use crate::drop_ins::{DropIns, FindDropIn};
|
||||||
use crate::hash::*;
|
use crate::hash::*;
|
||||||
|
|
||||||
#[derive(Error, Debug)]
|
#[derive(Error, Debug)]
|
||||||
|
|
Loading…
Reference in a new issue