Skip to content

Commit

Permalink
fix: correct error code type for yaml_parser_mod c binding (#1580)
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Lentz authored Sep 10, 2024
1 parent d13c129 commit d85c442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/yaml_parser.F90
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function open_and_parse_file_wrap(filename, file_id) bind(c) &
use iso_c_binding, only: c_char, c_int, c_bool
character(kind=c_char), intent(in) :: filename(*) !< Filename of the yaml file
integer(kind=c_int), intent(out) :: file_id !< File id corresponding to the yaml file that was opened
logical(kind=c_int) :: error_code !< Flag indicating the error message (1 if sucessful)
integer(kind=c_int) :: error_code !< Flag indicating the error message (1 if sucessful)
end function open_and_parse_file_wrap

!> @brief Private c function that checks if a file_id is valid (see yaml_parser_binding.c)
Expand Down

0 comments on commit d85c442

Please sign in to comment.