cpjreynolds / rustty

A terminal UI library
https://docs.rs/rustty
MIT License
152 stars 14 forks source link

Compile error from mismatched types in driver.rs #26

Closed travv0 closed 8 years ago

travv0 commented 8 years ago

I'm not sure what the exact cause is, but I was suddenly unable to compile this on multiple machines (Rust v1.4) due to "expected i32, found i16" errors on a couple of lines in driver.rs. I'm not very experienced with crates and dependencies and such, but I'd guess that one of the dependencies updated and caused the problem. Sorry if I'm doing something wrong and the problem is on my end, but it was very reproducible for me and changing the i16s to i32s fixed it.

cpjreynolds commented 8 years ago

Thank you! Looks like the term crate switched from i16s to i32s, which caused this. Thanks for the PR!