diff options
author | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-08-12 09:17:19 +0200 |
---|---|---|
committer | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-08-12 09:17:23 +0200 |
commit | f452999b8ce27ae7aa99f7efdb3bd651e55306a7 (patch) | |
tree | efae00f5097c408b7ab0f9e9722d00daeee33346 /src | |
parent | 391c4e525ce1aa77204f9da533042fb8158d891a (diff) | |
download | glutin-f452999b8ce27ae7aa99f7efdb3bd651e55306a7.tar.gz glutin-f452999b8ce27ae7aa99f7efdb3bd651e55306a7.zip |
Minor fix in consistency for #[cfg]s
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |