Skip to content

Commit

Permalink
Address renamed field..
Browse files Browse the repository at this point in the history
  • Loading branch information
nirosys committed May 10, 2024
1 parent 08c2313 commit 9c9166d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lazy/binary/raw/v1_1/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ impl<'top> LazyRawBinaryValue_1_1<'top> {
fn read_float(&self) -> ValueParseResult<'top, BinaryEncoding_1_1> {
debug_assert!(self.encoded_value.ion_type() == IonType::Float);

let value = match self.encoded_value.value_length {
let value = match self.encoded_value.value_body_length {
8 => {
let mut buffer = [0; 8];
let val_bytes = self.input.slice(1, 8);
Expand Down

0 comments on commit 9c9166d

Please sign in to comment.