From 7ff85cd216c175a65ef1802891243998ca3d9fca Mon Sep 17 00:00:00 2001 From: Vitali Haravy Date: Thu, 17 Sep 2015 12:03:27 +0300 Subject: [PATCH] Correct type definition of HANDLE. --- src/test/run-pass/x86stdcall2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/run-pass/x86stdcall2.rs b/src/test/run-pass/x86stdcall2.rs index c9742b0645e..f3bf5d9c684 100644 --- a/src/test/run-pass/x86stdcall2.rs +++ b/src/test/run-pass/x86stdcall2.rs @@ -10,7 +10,7 @@ #![feature(std_misc)] -pub type HANDLE = u32; +pub type HANDLE = usize; pub type DWORD = u32; pub type SIZE_T = u32; pub type LPVOID = usize;