Merge pull request #356 from smharper/develop

Fix for output.F90 string length error
This commit is contained in:
Bryan Herman 2015-01-24 09:43:57 -05:00
commit 2e48762fbb

View file

@ -216,7 +216,7 @@ contains
i_start = 0
do
if (length - i_start < line_wrap - 1) then
if (length - i_start < line_wrap + 1) then
! Remainder of message will fit on line
write(ou, fmt='(1X,A)') message(i_start+1:length)
exit