Skip to content

Commit

Permalink
permit wmp zero field to be non-zero
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-k committed Nov 6, 2024
1 parent 06acfd4 commit 5df8cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main_read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1728,7 +1728,7 @@ fn do_lang<AlphabetMaker: Fn() -> alphabet::Alphabet>(
}
}
ret.push_str(" = ");
for i in 0..64 {
for i in 0..32 {
if bits & (1 << i) != 0 {
alphabet_label.label(&mut ret, i)?;
}
Expand Down

0 comments on commit 5df8cab

Please sign in to comment.