changed format for reading float from('F') to * in IO_floatValue
This commit is contained in:
parent
033a6a03b3
commit
1fd722e4cf
|
@ -325,7 +325,7 @@
|
||||||
integer(pInt) positions(*),pos
|
integer(pInt) positions(*),pos
|
||||||
|
|
||||||
if (positions(1) >= pos) then
|
if (positions(1) >= pos) then
|
||||||
read(UNIT=line(positions(pos*2):positions(pos*2+1)),ERR=100,FMT='(F)') IO_floatValue
|
read(UNIT=line(positions(pos*2):positions(pos*2+1)),ERR=100,FMT=*) IO_floatValue
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
100 IO_floatValue = -1.0_pReal
|
100 IO_floatValue = -1.0_pReal
|
||||||
|
|
Loading…
Reference in New Issue