File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -651,7 +651,7 @@ contains
651
651
bits = bits*10 + iachar( string(pos:pos) ) - ia0
652
652
if ( bits < 0 ) go to 996
653
653
case(iachar('b'), iachar('B'))
654
- go to 100
654
+ exit
655
655
case default
656
656
go to 999
657
657
end select
@@ -660,7 +660,7 @@ contains
660
660
661
661
end do
662
662
663
- 100 if ( bits > 64 ) then
663
+ if ( bits > 64 ) then
664
664
call error_handler( 'BITS in STRING was greater than 64.', &
665
665
char_string_too_large_error, status, &
666
666
module_name, procedure )
Original file line number Diff line number Diff line change @@ -840,7 +840,7 @@ contains
840
840
bits = bits*10 + iachar( string(pos:pos) ) - ia0
841
841
if ( bits < 0 ) go to 996
842
842
case(iachar('b'), iachar('B'))
843
- go to 100
843
+ exit
844
844
case default
845
845
call error_handler( 'There was an invalid character ' // &
846
846
'in STRING', &
@@ -852,7 +852,7 @@ contains
852
852
pos = pos + 1
853
853
end do
854
854
855
- 100 if ( bits + pos > len(string) ) then
855
+ if ( bits + pos > len(string) ) then
856
856
call error_handler( 'STRING was too small for the number of ' // &
857
857
'bits specified by STRING.', &
858
858
char_string_too_small_error, status, &
You can’t perform that action at this time.
0 commit comments