Skip to content

Commit

Permalink
loadtxt: increase length of internal buffers (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
perazz authored Nov 23, 2024
2 parents 7511064 + 18606bf commit f6d317e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stdlib_io.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ contains
!!
integer :: s
integer :: nrow, ncol, i, ios, skiprows_, max_rows_
character(len=128) :: iomsg, msgout
character(len=1024) :: iomsg, msgout

skiprows_ = max(optval(skiprows, 0), 0)
max_rows_ = optval(max_rows, -1)
Expand Down Expand Up @@ -214,7 +214,7 @@ contains
!!

integer :: s, i, ios
character(len=128) :: iomsg, msgout
character(len=1024) :: iomsg, msgout
s = open(filename, "w")
do i = 1, size(d, 1)
#:if 'real' in t1
Expand Down

0 comments on commit f6d317e

Please sign in to comment.