diff options
author | eri <eri@inventati.org> | 2024-03-08 08:15:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-08 07:15:56 +0000 |
commit | ef3dad3a610d9d73754e976bece64a2184ed3821 (patch) | |
tree | bad8b3bb30fa99311c0c12003dff760b5e5963c5 /components/config/basedir.rs | |
parent | 88033bd65435ff502b847ecc783616c4f2ff74bd (diff) | |
download | servo-ef3dad3a610d9d73754e976bece64a2184ed3821.tar.gz servo-ef3dad3a610d9d73754e976bece64a2184ed3821.zip |
clippy: fix warnings in components/config* (#31562)
Diffstat (limited to 'components/config/basedir.rs')
-rw-r--r-- | components/config/basedir.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/config/basedir.rs b/components/config/basedir.rs index fbae2a7edca..fd17e482b88 100644 --- a/components/config/basedir.rs +++ b/components/config/basedir.rs @@ -35,7 +35,7 @@ pub fn default_config_dir() -> Option<PathBuf> { Some(config_dir) } -#[cfg(all(target_os = "windows"))] +#[cfg(target_os = "windows")] pub fn default_config_dir() -> Option<PathBuf> { let mut config_dir = ::dirs_next::config_dir().unwrap(); config_dir.push("Servo"); |