Skip to content

Commit

Permalink
fix outdated error message
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckyTurtleDev committed Oct 31, 2023
1 parent 383806f commit ee27d2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions more-wallpapers/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,14 @@ mod linux;
use crate::linux::*;

#[cfg(all(target_os = "windows", not(feature = "fallback")))]
std::compile_error!("Windows does need the \"wallpaper\" feature");
std::compile_error!("Windows does need the 'fallback' feature");
#[cfg(target_os = "windows")]
mod windows;
#[cfg(target_os = "windows")]
use crate::windows::*;

#[cfg(all(target_os = "macos", not(feature = "fallback")))]
std::compile_error!("MacOS does need the \"wallpaper\" feature");
std::compile_error!("MacOS does need the 'fallback' feature");
#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "macos")]
Expand Down

0 comments on commit ee27d2c

Please sign in to comment.