From 4c674ef8437ba921f6e95a882a644bdcb1b8e235 Mon Sep 17 00:00:00 2001 From: Tomaka17 Date: Tue, 4 Nov 2014 14:08:28 +0100 Subject: Fix some warnings in win32 ffi --- src/win32/ffi.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win32/ffi.rs b/src/win32/ffi.rs index 1d8156d..1920970 100644 --- a/src/win32/ffi.rs +++ b/src/win32/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)] use libc; @@ -147,7 +147,7 @@ pub const CS_SAVEBITS: DWORD = 0x0800; pub const CS_VREDRAW: DWORD = 0x0001; // ? -#[allow(type_overflow)] +#[allow(overflowing_literals)] pub const CW_USEDEFAULT: libc::c_int = 0x80000000; // ? -- cgit v1.2.3