Skip to content

Commit

Permalink
Fix compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
vbaconnet committed Sep 30, 2024
1 parent f5fd3e5 commit 1325fca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/io/csv_file.f90
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,9 @@ function csv_file_count_lines(this) result(n)

call this%check_exists()

open(file = trim(f%fname), status = 'old', newunit = file_unit, &
open(file = trim(this%fname), status = 'old', newunit = file_unit, &
iostat = ierr)
if (ierr .ne. 0) call neko_error("Error while opening " // trim(f%fname))
if (ierr .ne. 0) call neko_error("Error while opening " // trim(this%fname))

n = 0

Expand Down

0 comments on commit 1325fca

Please sign in to comment.