Skip to content

Commit

Permalink
Remove more 'module's
Browse files Browse the repository at this point in the history
  • Loading branch information
minhqdao committed Jul 30, 2024
1 parent 14604ac commit b435ce0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/stdlib_io_np_load.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ contains
if (present(iomsg) .and. allocated(msg)) call move_alloc(msg, iomsg)
end

module subroutine load_unzipped_bundle_to_arrays(unzipped_bundle, arrays, stat, msg)
subroutine load_unzipped_bundle_to_arrays(unzipped_bundle, arrays, stat, msg)
type(t_unzipped_bundle), intent(in) :: unzipped_bundle
type(t_array_wrapper), allocatable, intent(out) :: arrays(:)
integer, intent(out) :: stat
Expand Down Expand Up @@ -204,7 +204,7 @@ contains
end

!> Open file and try to identify the cause of the error that occurred during unzip.
module subroutine identify_unzip_problem(filename, stat, msg)
subroutine identify_unzip_problem(filename, stat, msg)
character(len=*), intent(in) :: filename
integer, intent(inout) :: stat
character(len=:), allocatable, intent(inout) :: msg
Expand Down Expand Up @@ -232,7 +232,7 @@ contains
stat = prev_stat; msg = 'Failed to unzip file: '//filename//nl//prev_msg
end

module subroutine verify_header(io_unit, stat, msg)
subroutine verify_header(io_unit, stat, msg)
integer, intent(in) :: io_unit
integer, intent(out) :: stat
character(len=:), allocatable, intent(out) :: msg
Expand Down

0 comments on commit b435ce0

Please sign in to comment.