From 386d58d0dec05465e66185197ef6eb626ad3fb78 Mon Sep 17 00:00:00 2001 From: aslezar <97354675+aslezar@users.noreply.github.com> Date: Mon, 16 Dec 2024 20:49:16 +0530 Subject: [PATCH] fixed formattting error --- cli/src/util/prereqs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/util/prereqs.rs b/cli/src/util/prereqs.rs index af48bf0a93a..f8eff34ec39 100644 --- a/cli/src/util/prereqs.rs +++ b/cli/src/util/prereqs.rs @@ -274,7 +274,7 @@ fn extract_ldd_version(output: &[u8]) -> Option { major: m.get(1).map_or(0, |s| u32_from_bytes(s.as_bytes())), minor: m.get(2).map_or(0, |s| u32_from_bytes(s.as_bytes())), patch: 0, - }) + }) } #[allow(dead_code)]