From f452999b8ce27ae7aa99f7efdb3bd651e55306a7 Mon Sep 17 00:00:00 2001 From: Tomaka17 Date: Tue, 12 Aug 2014 09:17:19 +0200 Subject: [PATCH] Minor fix in consistency for #[cfg]s --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index fec652a5..d7cb97f1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -23,7 +23,7 @@ extern crate libc; pub use events::*; -#[cfg(windows)] +#[cfg(target_os = "win32")] use winimpl = win32; #[cfg(target_os = "linux")] use winimpl = x11;