From 816fbb2165e3d2f5656a3afa9d9553551c0c6b68 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Tue, 1 Dec 2015 09:13:24 +0100 Subject: Fix the windows build --- src/api/wgl/make_current_guard.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api/wgl/make_current_guard.rs b/src/api/wgl/make_current_guard.rs index b890c82..83e35b2 100644 --- a/src/api/wgl/make_current_guard.rs +++ b/src/api/wgl/make_current_guard.rs @@ -1,7 +1,7 @@ use std::marker::PhantomData; +use std::os::raw::c_void; use std::io; -use libc; use winapi; use CreationError; @@ -40,8 +40,8 @@ impl<'a, 'b> CurrentContextGuard<'a, 'b> { impl<'a, 'b> Drop for CurrentContextGuard<'a, 'b> { fn drop(&mut self) { unsafe { - gl::wgl::MakeCurrent(self.previous_hdc as *const libc::c_void, - self.previous_hglrc as *const libc::c_void); + gl::wgl::MakeCurrent(self.previous_hdc as *const c_void, + self.previous_hglrc as *const c_void); } } } -- cgit v1.2.3