From 9f7ca672eadb5953d942dd55087e94b8331797b4 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Fri, 24 Oct 2025 18:46:45 -0700 Subject: [PATCH] chore(filesystem-device-match): add clarity to statement which is unreachable --- src/extractors/filesystem_device_match.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extractors/filesystem_device_match.rs b/src/extractors/filesystem_device_match.rs index 59ebf76..54a91ec 100644 --- a/src/extractors/filesystem_device_match.rs +++ b/src/extractors/filesystem_device_match.rs @@ -81,7 +81,7 @@ pub fn extract( } else { // We should still handle other errors gracefully. Err(error).context("unable to open filesystem partition info")?; - None + unreachable!() } } }