wrong string

This commit is contained in:
Martin Diehl 2020-01-29 23:04:15 +01:00
parent 59fe9d06b0
commit c2cdcb17f7
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ pure function IO_lc(string)
integer :: i,n
do i=1,len(string)
n = index(UPPER,IO_lc(i:i))
n = index(UPPER,string(i:i))
IO_lc(i:i) = merge(LOWER(n:n),string(i:i),n/=0)
enddo