Skip to content

Commit

Permalink
Merge pull request #43 from Euler-37/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams authored Jun 22, 2024
2 parents faac2a3 + 3570429 commit d588548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/csv_module.F90
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ subroutine read_csv_file(me,filename,header_row,skip_rows,status_ok)
end if
if (present(header_row)) then
iheader = max(0,header_row)
n_rows = n_rows - 1
n_rows = n_rows - merge(0,1,iheader==0)
else
iheader = 0
end if
Expand Down

0 comments on commit d588548

Please sign in to comment.