Skip to content

Commit 14604ac

Browse files
committed
Remove the other 'module'
1 parent 961d80e commit 14604ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stdlib_io_zip.f90

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module stdlib_io_zip
1212
integer(kind=c_long), parameter :: buffer_size = 1024
1313

1414
interface unzip
15-
module procedure unzip_to_bundle
15+
procedure unzip_to_bundle
1616
end interface
1717

1818
!> Contains extracted raw data from a zip file.
@@ -31,7 +31,7 @@ module stdlib_io_zip
3131

3232
contains
3333

34-
module subroutine unzip_to_bundle(filename, bundle, iostat, iomsg)
34+
subroutine unzip_to_bundle(filename, bundle, iostat, iomsg)
3535
character(len=*), intent(in) :: filename
3636
type(t_unzipped_bundle), intent(out) :: bundle
3737
integer, intent(out), optional :: iostat

0 commit comments

Comments
 (0)