Skip to content

Commit

Permalink
Added quotation marks in the sparse_file check error message. (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
albapa authored Jul 19, 2024
1 parent bf0c415 commit 65c8971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gp_fit.f95
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ function count_entries_in_sparse_file(sparse_file, sparse_method, d, error) resu

inquire(file=trim(sparse_file), exist=exist_sparse_file)
if (.not. exist_sparse_file) then
RAISE_ERROR('count_entries_in_sparse_file: '//trim(sparse_file)//' does not exist', error)
RAISE_ERROR('count_entries_in_sparse_file: "'//trim(sparse_file)//'" does not exist', error)
end if

call fwc_l(trim(sparse_file)//C_NULL_CHAR, n_sparse_file)
Expand Down

0 comments on commit 65c8971

Please sign in to comment.