aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/platform_specific
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-03-23 00:07:26 +0100
committerGitHub <noreply@github.com>2023-03-22 23:07:26 +0000
commit7f25d130c1e4ec8f57d91f87cb5420696e9ed774 (patch)
treecd5ca482745e6547b7766243cff3804b921d59cd /src-tauri/src/platform_specific
parent5e096f84e59eae0ed6b7bb758149c491c87538a6 (diff)
downloadFlightCore-7f25d130c1e4ec8f57d91f87cb5420696e9ed774.tar.gz
FlightCore-7f25d130c1e4ec8f57d91f87cb5420696e9ed774.zip
fix: Remove unnecessary `.to_string()` (#230)
Thanks clippy <3
Diffstat (limited to 'src-tauri/src/platform_specific')
-rw-r--r--src-tauri/src/platform_specific/windows.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/platform_specific/windows.rs b/src-tauri/src/platform_specific/windows.rs
index 21772b91..5d054808 100644
--- a/src-tauri/src/platform_specific/windows.rs
+++ b/src-tauri/src/platform_specific/windows.rs
@@ -18,7 +18,7 @@ pub fn origin_install_location_detection() -> Result<String, anyhow::Error> {
return Ok(game_path_str.to_string());
}
Err(err) => {
- println!("{}", err.to_string());
+ println!("{}", err);
continue; // Not a valid game path
}
}