MeteoSwiss / MeteoSwiss/ffixed2free
Bad interpretation of certains lines
Open
- Dominant language
- Fortran
- Stars
- 3
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
the line :
```character*(*) char2```
get transformed into
```character(len=2) :: char2```
when it shoud be
```character(len=*) :: char2```
this is because the subroutine check_character search for the first digit when lstar is true
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.