Use LU=26 in readwav.f90.

This commit is contained in:
Joe Taylor 2019-06-04 10:39:43 -04:00
parent 14867a868b
commit 6a2ac44916
1 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,7 @@ contains
type(riff_descriptor) :: desc
character(len=4) :: riff_type
this%lun=26
open (unit=this%lun, file=filename, access='stream',status='old')
read (unit=this%lun) desc,riff_type
inquire (unit=this%lun, pos=filepos)
@ -67,5 +68,6 @@ contains
end if
filepos = filepos + (desc%size + 1) / 2 * 2 ! pad to even alignment
end do
return
end subroutine read
end module readwav