Fixed output.F90 typo

This commit is contained in:
Sterling Harper 2015-01-23 23:58:42 -05:00
parent 291b45a646
commit c74ee75a38

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