Skip to content
Snippets Groups Projects
Commit 6cb2fa88 authored by whit's avatar whit
Browse files

modified for new centos 6.2 machines

parent 56a804b9
No related branches found
No related tags found
No related merge requests found
......@@ -72,12 +72,14 @@ c
this(last_hex:)=' '
CALL squeeze(this,i)
IF(this.eq.' ') goto 2222
READ(this(1:i),'(z)',err=2222) v(j)
c READ(this(1:i),'(z)',err=2222) v(j)
READ(this(1:i),'(z10)',err=2222) v(j)
elseif(oct) then
this(last_oct:)=' '
CALL squeeze(this,i)
IF(this.eq.' ') goto 2222
READ(this(1:i),'(o)',err=2222) v(j)
c READ(this(1:i),'(o)',err=2222) v(j)
READ(this(1:i),'(o10)',err=2222) v(j)
elseif(bin) then
this(last_binary:)=' '
CALL squeeze(this,i)
......@@ -95,7 +97,8 @@ c
else
CALL squeeze(this,i)
IF(this.eq.' ') goto 2222
READ(this(1:i),'(i)',err=2222) v(j)
c READ(this(1:i),'(i)',err=2222) v(j)
READ(this(1:i),'(i10)',err=2222) v(j)
endif
c
this= line(divider+1:)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment