diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-03-22 14:18:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 13:18:11 +0000 |
commit | 423775e903dfe630ad9af2f1dacdd1a1729023ae (patch) | |
tree | 0d45f977f196cdf4973b27d7f378beceb80e0b50 /src-tauri/src/lib.rs | |
parent | a22486193ef49113851fab6f277d50f796ecc636 (diff) | |
download | FlightCore-423775e903dfe630ad9af2f1dacdd1a1729023ae.tar.gz FlightCore-423775e903dfe630ad9af2f1dacdd1a1729023ae.zip |
fix: Address clippy errors in glibc parsing code (#226)
Diffstat (limited to 'src-tauri/src/lib.rs')
-rw-r--r-- | src-tauri/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 2e0a0250..5bdc82c4 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -80,8 +80,7 @@ pub fn linux_checks_librs() -> Result<(), String> { return Err(format!( "GLIBC is not version {} or greater", min_required_ldd_version - ) - .to_string()); + )); }; // All checks passed |