Skip to content

Commit

Permalink
Update src/stdlib_str2num.f90
Browse files Browse the repository at this point in the history
Co-authored-by: Jeremie Vandenplas <[email protected]>
  • Loading branch information
jalvesz and jvdp1 authored Dec 26, 2023
1 parent 79beace commit e960436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stdlib_str2num.f90
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ elemental function mvs2nwsp(s) result(p)
elemental function mvs2wsp(s) result(p)
!> move string to position of the next white space character
character(*),intent(in) :: s !> character chain
integer(1) :: p !> position
integer(int8) :: p !> position
!----------------------------------------------
p = 1
do while( p<len(s) .and. .not.(iachar(s(p:p))==WS.or.iachar(s(p:p))==LF.or.iachar(s(p:p))==CR) )
Expand Down

0 comments on commit e960436

Please sign in to comment.