diff options
| author | Vitali Haravy <humaneprogrammer@gmail.com> | 2015-09-17 12:03:27 +0300 |
|---|---|---|
| committer | Vitali Haravy <humaneprogrammer@gmail.com> | 2015-09-17 12:03:27 +0300 |
| commit | 7ff85cd216c175a65ef1802891243998ca3d9fca (patch) | |
| tree | 0f11e1761c8bc0766d060e831c631a32537322b4 | |
| parent | f18c2aaf203e4e428c46c651b34c7a3e4ca91572 (diff) | |
| download | rust-7ff85cd216c175a65ef1802891243998ca3d9fca.tar.gz rust-7ff85cd216c175a65ef1802891243998ca3d9fca.zip | |
Correct type definition of HANDLE.
| -rw-r--r-- | src/test/run-pass/x86stdcall2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
