Skip to content

Commit

Permalink
Make the offset parametric
Browse files Browse the repository at this point in the history
  • Loading branch information
matzipan committed Oct 14, 2023
1 parent aec0ff3 commit 67fb641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/lox_core/src/ephemeris/daf_spk/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ pub fn parse_summary_and_name_record_pair(
ni: u32,
) -> nom::IResult<&[u8], SummaryRecord> {
let summary_record_input = input;
let mut name_record_input = &input[1024..];
let mut name_record_input = &input[RECORD_SIZE as usize..];

let nc = 8 * (nd + (ni + 1) / 2);

Expand Down

0 comments on commit 67fb641

Please sign in to comment.