Mahmoud Al-Qudsi aca7dedf33 Fix Tokenizer::parse_fd() on x86
Upsizing to `usize` from `i32` doesn't work if `usize` is only 32-bits.
I changed the code to use the `FromStr` impl on `i32`, but we could have also
just used `u64` instead of `i32`.

Also, we should get in the habit of using the appropriate type aliases where
possible (`i32` should be `RawFd`).
2023-02-20 13:41:11 -06:00
..
2023-02-20 13:41:11 -06:00
2023-02-02 19:34:47 -07:00
2023-02-19 21:01:46 +01:00