diff options
| author | iximeow <me@iximeow.net> | 2022-01-12 14:43:25 -0800 | 
|---|---|---|
| committer | iximeow <me@iximeow.net> | 2022-01-12 15:00:13 -0800 | 
| commit | cb199ddb96760c7b61e31a7c2fd4b040f4eb243a (patch) | |
| tree | 25fd2185ebb5c8dca35b4dd115f97c605b9b1933 /src | |
| parent | 5214a222c24a12adafb3180cbd570bcad0a72a5d (diff) | |
fix warning, update changelog, remove local Cargo.toml hacks
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/main.rs b/src/main.rs index 42aa338..86315bc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -610,7 +610,7 @@ fn fmt_field_descriptions(bit_mapper: &BitPosition, fields: &[FieldRecord], data      res.push_str(unsafe { std::str::from_utf8_unchecked(&col[..line_end]) });      res.push_str("\n"); -    for (field_index, bit) in boundary_order { +    for (_field_index, bit) in boundary_order {          let mut fudge = 0;          let mut col = [b' '; 160]; | 
