Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasKnecht committed Nov 11, 2023
1 parent 3941d3c commit 13171bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/parse_chunk.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ parse_chunk.parameter <- function(ds,raw) {
} else if (type_index == 2) {
parameter_value <- read_double(raw, cursor_value, n = 1L)
} else if (type_index %in% c(3, 4, 5)) {
parameter_value <- read_character(raw, cursor_value, n = 1L, n_char = parameter_size)
parameter_value <- read_character(raw, cursor_value, n = 1L, n_char = 2*parameter_size)
}

repeat_list <- list(
Expand Down

0 comments on commit 13171bf

Please sign in to comment.