Skip to content

Commit cdc7b50

Browse files
committed
Ugh...typo.
1 parent bf3475b commit cdc7b50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/strings.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ function str_uniq(str,delim) result(strout)
168168
ctemp=trim(adjustl(str))
169169
! Remove any leading or trailing delimiters
170170
if(ctemp(1:1).eq.delim) ctemp=ctemp(2:len(ctemp))
171-
if(ctemp(len(ctemp):len(ctemp)).eq.demlin) ctemp=ctemp(1:len(ctemp)-1)
171+
if(ctemp(len(ctemp):len(ctemp)).eq.delim) ctemp=ctemp(1:len(ctemp)-1)
172172
ncols=str_count(ctemp,delim)+1
173173
do n=1,ncols
174174
col=str_split(ctemp,delim,n)

0 commit comments

Comments
 (0)