Fix errors with bools represented as ints.

This commit is contained in:
Joseph Crail 2015-12-01 01:27:08 -05:00 committed by Roy Ivy III
parent 9c4c9f6782
commit 3863842fae

View file

@ -151,7 +151,7 @@ pub fn is_stdin_interactive() -> bool {
#[cfg(windows)]
pub fn is_stdin_interactive() -> bool {
0
false
}
#[cfg(unix)]
@ -161,7 +161,7 @@ pub fn is_stdout_interactive() -> bool {
#[cfg(windows)]
pub fn is_stdout_interactive() -> bool {
0
false
}
#[cfg(unix)]
@ -171,5 +171,5 @@ pub fn is_stderr_interactive() -> bool {
#[cfg(windows)]
pub fn is_stderr_interactive() -> bool {
0
false
}