From 583506dca04195c444b2e28d69d2eb57b4468d9d Mon Sep 17 00:00:00 2001 From: Glenn Watson Date: Mon, 24 Nov 2014 07:36:13 +1000 Subject: Fix some rustc warnings --- src/x11/ffi.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x11/ffi.rs b/src/x11/ffi.rs index b7e7379..3fe6499 100644 --- a/src/x11/ffi.rs +++ b/src/x11/ffi.rs @@ -1,7 +1,7 @@ #![allow(dead_code)] #![allow(non_snake_case)] #![allow(non_camel_case_types)] -#![allow(non_uppercase_statics)] +#![allow(non_upper_case_globals)] pub use self::glx::types::*; use libc; @@ -181,7 +181,7 @@ pub const GLX_TRANSPARENT_RED_VALUE: libc::c_int = 0x25; pub const GLX_TRANSPARENT_GREEN_VALUE: libc::c_int = 0x26; pub const GLX_TRANSPARENT_BLUE_VALUE: libc::c_int = 0x27; pub const GLX_TRANSPARENT_ALPHA_VALUE: libc::c_int = 0x28; -#[allow(type_overflow)] +#[allow(overflowing_literals)] pub const GLX_DONT_CARE: libc::c_int = 0xFFFFFFFF; pub const GLX_NONE: libc::c_int = 0x8000; pub const GLX_SLOW_CONFIG: libc::c_int = 0x8001; -- cgit v1.2.3