diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-04-01 18:44:53 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-04-02 00:18:45 -0700 |
| commit | e3b7e6caa25bffcffe6b04f550f551e1ae086f6b (patch) | |
| tree | 460e4d59504435411421cf261c5735a726f16942 /src/libtest | |
| parent | fb77443213d3be1e0c937b6f9e114e0c8c5b2bb5 (diff) | |
| download | rust-e3b7e6caa25bffcffe6b04f550f551e1ae086f6b.tar.gz rust-e3b7e6caa25bffcffe6b04f550f551e1ae086f6b.zip | |
Tweak relese notes + rebase fixes
Diffstat (limited to 'src/libtest')
| -rw-r--r-- | src/libtest/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 8d329367972..c84703b93ed 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -757,7 +757,7 @@ fn stdout_isatty() -> bool { } #[cfg(windows)] fn stdout_isatty() -> bool { - const STD_OUTPUT_HANDLE: libc::DWORD = -11; + const STD_OUTPUT_HANDLE: libc::DWORD = -11i32 as libc::DWORD; extern "system" { fn GetStdHandle(which: libc::DWORD) -> libc::HANDLE; fn GetConsoleMode(hConsoleHandle: libc::HANDLE, |
