From fe245e292937a5af3dc6bd60c21c3426acb1449e Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Sun, 5 Oct 2014 15:54:37 +0200 Subject: Fix warnings --- src/lib.rs | 2 +- src/x11/ffi.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index af0706d..3b1a586 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -46,7 +46,7 @@ mod android; mod events; -#[cfg(not(target_os = "windows"), not(target_os = "linux"), not(target_os = "macos"), not(target_os = "android"))] +#[cfg(all(not(target_os = "windows"), not(target_os = "linux"), not(target_os = "macos"), not(target_os = "android")))] compile_error!("Only the `windows`, `linux` and `macos` platforms are supported") /// Identifier for a monitor. diff --git a/src/x11/ffi.rs b/src/x11/ffi.rs index 8ab6f45..1f72943 100644 --- a/src/x11/ffi.rs +++ b/src/x11/ffi.rs @@ -1,6 +1,7 @@ #![allow(dead_code)] #![allow(non_snake_case)] #![allow(non_camel_case_types)] +#![allow(non_uppercase_statics)] use libc; -- cgit v1.2.3