This commit is contained in:
slonkazoid 2024-09-04 23:31:48 +03:00
parent d6061c5dff
commit 363530e394
Signed by: slonk
SSH key fingerprint: SHA256:tbZfJX4IOvZ0LGWOWu5Ijo8jfMPi78TU7x1VoEeCIjM
2 changed files with 2 additions and 3 deletions

View file

@ -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,

View file

@ -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)]