diff options
| author | Virgile Andreani <virgile.andreani@anbuco.fr> | 2014-05-04 20:48:16 +0200 |
|---|---|---|
| committer | Virgile Andreani <virgile.andreani@anbuco.fr> | 2014-05-04 20:48:16 +0200 |
| commit | 169a57ee8d301c44fb285cc95fc1309d96aa37ab (patch) | |
| tree | f41231004cca8500906203ac98acd71a8ba7ad86 /src/libterm | |
| parent | 0e8e0b2ede175be6a4874700674b259c8c63c2cc (diff) | |
| download | rust-169a57ee8d301c44fb285cc95fc1309d96aa37ab.tar.gz rust-169a57ee8d301c44fb285cc95fc1309d96aa37ab.zip | |
Remove two useless comparisons
according to the updated type_limits lint.
Diffstat (limited to 'src/libterm')
| -rw-r--r-- | src/libterm/terminfo/parser/compiled.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libterm/terminfo/parser/compiled.rs b/src/libterm/terminfo/parser/compiled.rs index 538a1513d65..db5dd2d5c19 100644 --- a/src/libterm/terminfo/parser/compiled.rs +++ b/src/libterm/terminfo/parser/compiled.rs @@ -220,9 +220,7 @@ pub fn parse(file: &mut io::Reader, if bools_bytes != 0 { for i in range(0, bools_bytes) { let b = try!(file.read_byte()); - if b < 0 { - return Err("error: expected more bools but hit EOF".to_owned()); - } else if b == 1 { + if b == 1 { bools_map.insert(bnames[i as uint].to_owned(), true); } } |
