diff options
author | rustdesk <[email protected]> | 2023-01-07 11:59:53 +0800 |
---|---|---|
committer | rustdesk <[email protected]> | 2023-01-07 11:59:53 +0800 |
commit | 605d0dd6c1173fc18793453709dd4505b721c16a (patch) | |
tree | 16c6b7222beeaa3027ba98ce0511dff057b0e61e /libs | |
parent | ebbe5d5297914f00b8c75cc39a19050b6c22b366 (diff) | |
download | rustdesk-server-605d0dd6c1173fc18793453709dd4505b721c16a.tar.gz rustdesk-server-605d0dd6c1173fc18793453709dd4505b721c16a.zip |
fix clippy
Diffstat (limited to 'libs')
-rw-r--r-- | libs/hbb_common/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hbb_common/src/config.rs b/libs/hbb_common/src/config.rs index 4dad2d2..fb25027 100644 --- a/libs/hbb_common/src/config.rs +++ b/libs/hbb_common/src/config.rs @@ -433,7 +433,7 @@ impl Config { #[cfg(not(any(target_os = "android", target_os = "ios")))] { #[cfg(not(target_os = "macos"))] - let org = ""; + let org = "".to_owned(); #[cfg(target_os = "macos")] let org = ORG.read().unwrap().clone(); // /var/root for root |